clownassembler
clownassembler copied to clipboard
Motorola 68000 assembler, clone of SN 68k (A.K.A. asm68k).
So, I was writing a DMA macro and made a mistake: ``` DmaToVram: macro from, to, len, areg DmaToVram \from, \to, \len, 2, \areg endm ``` That second `DmaToVram` was...
The listing introduces some formatting errors when including files. Here are a couple of examples I found while trying the assembler (included file and resulting portion of the listing) ##...
When defining an `equ` or `rs` label, the listing still shows the current PC value in its place. Since one of the most useful features of a listing is to...
I tried building the SLZ decompressor as a test (https://github.com/sikthehedgehog/mdtools/blob/master/slz/md/slz.68k) and got these warnings: ``` Warning: AND should be ANDI. On line 40 of 'slz.68k'... and.w #$0F, d4 Warning: EOR...
These are some things I'd like to be added, listed from most important to least important. - [x] String stuff (equs, strlen, strcmp, instr, substr) (asm68k) - [ ] Z80...
can you program it in a way that it would be possible to assemble the sonic 1 prototype
Hello, I would like to have a folder structure where ".asm" files are located in a "src" subfolder. When I compile the code with clownassembler, I get an error because...
I'm trying to research a neogeo game. I using MAME to export the code. There is a piece of code that appears frequently in the game. ``` 090714: D040 add.w...
For instructions that support multiple sizes but do not have a size suffix specified, the assembler should select a default size. For example: ``` asm move #0, d0 -> move.w...
hi...i am trying to see if it is possible to use clownassembler to assemble MDSDRV.bin https://github.com/superctr/MDSDRV there are a few components, but all i am trying to get built is...