empathicqubit

Results 47 comments of empathicqubit

I am doing something like this in my Makefile: ```sh cat program.bin ``` And then passing that to binpac8x. It might be a simpler workaround than including another compiler in...

The reason the hello world is so big is because it uses printf. If you change it to use cputs() then the bin file is only 414 bytes.

> I'm not fluent enough in makefiles to understand exactly what this is doing. Are you passing the C code into z88dk first, then adding the 2 AsmProg token bytes,...

These releases collect some of the changes I've made to Wabbit: https://github.com/empathicqubit/wabbitemu/releases

You'll also want to grab the nightly of z88dk, because GDB wasn't working on Windows in the release build: http://nightly.z88dk.org/z88dk-win32-latest.zip

I honestly don't know much about the interrupt code either. I assume that it's still there even in a fully assembly project.

TI-OS is the vanilla ROM environment. However, it does not work with any of the shells either without the same modification. To start in TI-OS, you need to open the...

https://ce-programming.github.io/CEmu/

For me I am using the Native Debug extension in vscode. It sends escaped requests and works fine, but the reply for when the breakpoint gets hit is not escaped,...