zu2

Results 14 comments of zu2

I checked the minix68k code and noticed that it adjusts the position of byte arguments at the beginning of the function. Is it possible to implement this in cg, or...

Thank you for your feedback. The reason I'm using cg is that I am referencing the implementations for the 6500 and Z80. Previously, I developed a backend C compiler for...

linuxppc code also adjusts the position of byte arguments. ``` lwz r4,8(fp) stb r4,8(fp) lwz r5,12(fp) stb r5,12(fp) ```

The issue has been clarified. The C compiler outputs EM code for char-type arguments, as seen with the m68k and z8000. In contrast, this process is intentionally omitted in the...