rjpontefract

Results 14 comments of rjpontefract

I did see that 1.20 was already in b-em along with 1.22 and 2.00. JGH did create the HD BIOS and it only works with the version 1.20 or 1.21...

I already have code locally that includes all of the different versions in the tube menu: I can create a pull request, but I'd like your opinion on the best...

Happy to hear that you know the reason for 1.22 existing and look forward to seeing what solution you come up with for this.

That was quite some investigation you did there, thanks for the explanation. I'll checkout the z80rom branch and give it a try. Update: After a small battle with allegro and...

I've submitted a pull request. I don't know if the original hardware that CiscOS ran on was ever made public. The images of it show that it used a 68008...

I'm running version 2.03 of CiscOS which is the from the most recent source code I can find for it. I couldn't assemble the 2.03 source code though, so I...

Ah yes, I changed that when I was playing around getting it to build: `.set max_ram_size, 0xFFFE0000 ; Address at which checkramsize will stop` There are two small fixes in...

I suspect that in the first two cases, it doesn't matter as the code following just moves a byte anyway: ``` BSR check_cpu ; Find out which CPU is present...

It's odd, because as far as I can tell, the 68K emulation does it correctly for the 68000. The 68000 documentation says: and the emulation code code does: ``` INLINE...

Thanks for the configuration example. It seems that path is freed twice and causes an abend on the second one: ``` fclose(romf); if (path) al_destroy_path(path); if (tube->cpu->init(tuberom)) { tube_updatespeed(); tube_reset();...