PeterLemon

Results 6 issues of PeterLemon

some cpu architectures like on the Neo-Geo Pocket, can access shadow registers indirectly within brackets (XX'), right now bass supports shadow registers outside brackets such as the Z80 instruction: ex...

some cpu architectures allow immediate 32-bit data encoding, right now we can use *08 or *16 with shift rights (>>XXa) to output data correctly in the tables, but it would...

bass v18 m68k arch is not assembling some instructions from the v14 m68k instruction test

test.asm file for this is: output "test.bin", create map ',', $43 db "Hello, World" bass gives this error atm: error: malformed expression: ' test.asm:2:1: map ',', $43 bass: assembly failed...

Numerical literal bug examples: lda #$00 = A9 00 lda #$0000 = A9 00 00 lda #0 = A9 00 00 lda #00 = A9 00 00 lda #%00000000 =...

Evaluation of floats would be useful.