armips
armips copied to clipboard
An assembler for various ARM and MIPS platforms. Builds available at http://buildbot.orphis.net/armips/
While reading through the [documentation](https://github.com/Kingcom/armips#410-cc-importer), I found the following line: You can link object files or static libraries in ELF format. The code and data is relocated to the current...
This PR depends on [224](https://github.com/Kingcom/armips/pull/224) since that one adds symfile checking to the tests runner. The only additional commit is d1ebc72671d421bec8f57f533227bff2a6f7b212.
This adds the `.importsym` directive which lets you import a pre-existing symfile. This is pretty useful when you have a base symfile for a game and you want to merge...
This adds the Z80 architecture and instruction set, as well as the Game Boy (Color) and Nintendo e-Reader instruction sets, which are based on Z80. The following directives can be...
`.` will by default install to `/usr/local/./armips` (similar for the Readme) which is undesirable. armips should install to a bin directory, Readme should install to a doc directory for the...
The following ARM addressing modes work for LDR (and LDRB): ldr r3, [r2, #1] ldr r3, [r2, #-1] ldr r3, [r2, r1] ldr r3, [r2, -r1] ldr r3, [r2, #1]!...
hello, thank you for this amazing tool, I am using it for my fan translation and so far has been great to edit values and even inject some code! There...
Consider the following assembly; .rsp .create "text.bin", 0x40001000 llv v1[0],lo(label1)(zero) llv v1[0],lo(label2)(zero) llv v1[0],lo(label3-_ref)($5) llv v1[0],lo(label_neg)(zero) .close .create "data.bin", 0x40000000 label1: .word 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF .word 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF,...
@Kingcom Hi, I'm aware that this is not the place to ask about your rom translation projects, but as far as I know this is the only way to ask...
I was getting corrupted output randomly, and decided to run armips under valgrind. It blew up in over 20 places: ``` ==2141== Memcheck, a memory error detector ==2141== Copyright (C)...