Ryan Sanche
Ryan Sanche
For a C toolchain to target customasm, you need to be able to build object files from assembler, that are later linked together into binaries. That's just the way C...
There is possibly also another solution: make customasm assembly files the "object" files, and treat customasm as a linker instead. I think there might be issues with imported / exported...
I run my code through the C preprocessor, cpp. After some experimentation this is the set of command line options I came up with: ```bash cpp -x assembler-with-cpp -nostdinc -CC...
Edit: actually the fix is this: ``` #subruledef REG { r0 => 0 } #ruledef { loadi {reg}, {val:s9} => 13`4 @ reg`3 @ val zero {reg:REG} => asm {...
You know what, I don't like what I said, I hope you don't mind if I take it back. For my use cases, it doesn't matter to me if the...
https://zipcpu.com/blog/2017/07/31/vcd.html https://en.wikipedia.org/wiki/Value_change_dump Probably the best documentation is in the standard where it's specified, unfortunately that's not free, but perhaps you have access to it? The FST file format is described...
Seemed like python was failing to install in the CI.... I tried a fix to force python to install, but now it's saying that python is already installed. So it...