1
0
Fork 0
mirror of https://github.com/notwa/lips synced 2024-04-30 09:03:23 -07:00
lips/README.md

258 lines
7.0 KiB
Markdown
Raw Normal View History

2015-11-22 14:00:17 -08:00
# lips
2015-11-22 13:58:29 -08:00
An assembler for the MIPS R4300i architecture, written in Lua.
2015-12-02 09:43:54 -08:00
This is not a 'true' assembler; it won't produce executable binary files.
This was intended to assist in hacking N64 games.
It does little more than output hex.
2015-11-23 20:42:19 -08:00
Not for production. Much of the code and syntax is untested and likely to change.
Even this README is incomplete.
2016-01-18 12:56:06 -08:00
## Usage
Copy the lips directory to somewhere Lua's `package.path` can find it.
If you're using it locally, you will need to write something like:
```
2016-04-14 07:36:19 -07:00
package.path = package.path..";?/init.lua"
2016-01-18 12:56:06 -08:00
```
2016-04-14 07:33:33 -07:00
or `require "lips.init"` directly.
2016-01-18 12:56:06 -08:00
You can then use it as such:
[example.lua][elua] — [example.asm][easm]
[elua]: ./example.lua
[easm]: ./example.asm
2016-01-18 12:56:06 -08:00
By default, lips will print the assembled word values in hex:
```
18800017
00001025
2401002F
10810002
0081082A
10200012
2488FFFF
00084080
etc...
```
Since lips is designed to assist with ROM/RAM hacking,
it cannot produce executable files on its own.
Instead, it is meant to be integrated with an existing executable or memory dump.
For instance, consider [this injection routine][inject.lua]
written for the Nintendo 64 Zelda games.
[inject.lua]: https://github.com/notwa/mm/blob/master/Lua/inject.lua
## Syntax
2015-11-23 20:42:19 -08:00
2016-01-18 12:56:06 -08:00
lips uses a derivative of [CajeASM's][caje] syntax.
It takes a couple notes from more traditional assemblers as well.
2015-11-23 20:42:19 -08:00
[caje]: https://github.com/Tarek701/CajeASM/
2016-01-18 12:56:06 -08:00
A run-down of various syntax elements:
```asm
2016-01-18 12:56:06 -08:00
// this is a comment
/* this is a block comment */
; this is a more traditional assembly style of comment
; we'll be using this so github's syntax highlighting doesn't blow up
2016-01-18 12:56:06 -08:00
; this is comparible to C's #define my_const 0xDEADBEEF
2016-01-18 12:56:06 -08:00
[my_const]: 0xDEADBEEF
; we can then use it in instructions by adding a @ prefix
2016-01-18 12:56:06 -08:00
li a0, @my_const
; whitespace is optional
2016-01-18 12:56:06 -08:00
li a0,@myconst
; commas can be optional too,
; but this feature will likely be removed in the future.
2016-01-18 12:56:06 -08:00
li a0 @myconst
; instruction/register names are case-insensitive, as are hex digits
2016-01-18 12:56:06 -08:00
LI A0, @my_const
LuI a0, 0xDeAd
; coprocessor 0 registers are case-insensitive as well,
; though this may change in the future.
2016-01-18 12:56:06 -08:00
mfc0 a1, CouNT
; labels are defined with a colon and referenced without prefix, as such:
2016-01-18 12:56:06 -08:00
my_label:
b my_label
nop
; directives are prefixed with a dot.
; also, labels may be used in .word directives.
2016-01-18 12:56:06 -08:00
.word my_label, 1, 2, 3, 0x4567
; octal numbers are supported
2016-01-18 12:56:06 -08:00
.short 0177, 0404
.align ; implied argument of 2, for a 2**n=4 byte alignment
2016-01-18 12:56:06 -08:00
; loading and storing can be written in several ways (addressing modes)
2016-01-18 12:56:06 -08:00
lw s0, label
lw s1, (s0)
lw s2, 256(s0)
lw s3, label(s0)
sw s2, label+4
sw s3, label+4(s0)
; relative labels, borrowed from asw (except ours require a suffixing colon)
2016-01-18 12:56:06 -08:00
-:
b ++
nop
+:
-:
b --
nop
+:
b -
nop
; TODO: more examples!
2016-01-18 12:56:06 -08:00
```
## Instructions
2015-11-23 20:42:19 -08:00
Instructions were primarily referenced from [the N64 Toolkit: Opcodes.][n64op]
2015-12-21 02:39:19 -08:00
An in-depth look at instructions for MIPS IV processors
2015-11-23 20:42:19 -08:00
is given by [the MIPS IV Instruction Set manual.][mipsiv]
2015-12-21 02:39:19 -08:00
Most of this applies to our MIPS III architecture.
2015-11-23 20:42:19 -08:00
2015-12-02 09:43:54 -08:00
[The MIPS64 Instruction Set manual][mips64] is sometimes useful.
2015-12-21 02:39:19 -08:00
Much of it doesn't apply to our older MIPS III architecture,
2015-12-02 09:43:54 -08:00
but it's a little cleaner than the older manual.
2015-11-23 20:42:19 -08:00
There's also a brief and incomplete [overview of MIPS instructions.][overview]
First-time writers of MIPS assembly may find this the most useful.
2015-11-23 20:42:19 -08:00
[n64op]: https://github.com/mikeryan/n64dev/tree/master/docs/n64ops
[mipsiv]: http://www.cs.cmu.edu/afs/cs/academic/class/15740-f97/public/doc/mips-isa.pdf
2015-12-02 09:43:54 -08:00
[mips64]: http://scc.ustc.edu.cn/zlsc/lxwycj/200910/W020100308600769158777.pdf
2015-11-23 20:42:19 -08:00
[overview]: http://www.mrc.uidaho.edu/mrc/people/jff/digital/MIPSir.html
### Unimplemented
2015-11-25 10:28:55 -08:00
As far as I know, all native R4300i instructions have been implemented.
Whether or not they output the proper machine code is another thing.
### Unimplemented Pseudo-Instructions
2015-11-25 10:47:37 -08:00
Besides implicit arguments for existing instructions, there are:
* ABS, MUL, DIV, REM
2016-01-05 01:51:06 -08:00
* BGE, BLE, BLT, BGT
2016-01-05 01:51:06 -08:00
* any Set (Condition) \[Immediate\] \[Unsigned\] pseudo-instructions
## Registers
In order of numerical value, with intended usage:
* R0: always zero; cannot be written to. 'zero' is an acceptable alias.
* AT: assembler temporary. used by various pseudo-instructions.
user may use freely if they're wary.
* V0, V1: subroutine return values.
* A0 A1 A2 A3: subroutine arguments.
* T0 T1 T2 T3 T4 T5 T6 T7: temporary registers.
* S0 S1 S2 S3 S4 S5 S6 S7: saved registers.
* T8 T9: more temporary registers.
* K0 K1: kernel registers. not recommended to use outside of kernel code.
* GP: global pointer.
* SP: stack pointer.
* FP: frame pointer. 'S8' is an acceptable alias.
* RA: subroutine return address.
* REG#: whereas # is a decimal number from 0 to 31.
aliased to the appropriate register. eg: REG0 is R0, REG1 is at, REG2 is V0.
2016-01-05 01:51:06 -08:00
* F#: coprocessor 1 registers, whereas # is a decimal number from 0 to 31.
2015-12-25 19:12:50 -08:00
* coprocessor 0 (system) registers are as follows:
```
2015-12-25 19:12:50 -08:00
Index Random EntryLo0 EntryLo1
Context PageMask Wired Reserved0
BadVAddr Count EntryHi Compare
Status Cause EPC PRevID
Config LLAddr WatchLo WatchHi
XContext Reserved1 Reserved2 Reserved3
Reserved4 Reserved5 PErr CacheErr
TagLo TagHi ErrorEPC Reserved6
```
## Directives
2015-11-24 13:23:22 -08:00
* `.byte {numbers...}`
writes a series of 8-bit numbers until end-of-line.
be wary of potential alignment issues.
2015-11-24 13:23:22 -08:00
* `.halfword {numbers...}`
writes a series of 16-bit numbers until end-of-line.
be wary of potential alignment issues.
2015-11-24 13:23:22 -08:00
* `.word {numbers...}`
writes a series of 32-bit numbers until end-of-line.
2015-11-24 13:23:22 -08:00
* `.align [n] [fill]`
2016-01-13 11:46:29 -08:00
aligns the next datum to a `2**n` boundary using `fill` for spacing.
if `n` is omitted, 2 is implied.
if `fill` is omitted, 0 is implied.
2015-11-24 13:23:22 -08:00
* `.skip {n} [fill]`
skips the next `n` bytes using `fill` for spacing.
2016-01-13 11:46:29 -08:00
if `fill` is omitted, no bytes are overwritten,
2015-11-24 13:23:22 -08:00
and only the position is changed.
2015-11-24 13:23:22 -08:00
* `.org {address}`
set the current address for writing to; seek.
until lips is a little more optimized,
be cautious of seeking to large addresses.
* `HEX { ... }`
write a series of bytes given in hexadecimal.
all numbers must be given in hex — no prefix is required.
```
butts: HEX {
F0 0D
DE AD BE EF
}
.align
```
2016-01-05 01:51:06 -08:00
* `.inc {filename}`
`.incasm {filename}`
`.include {filename}`
include an external assembly file as-is at this position.
lips will look for the included file
in the directory of the file using the directive.
2016-04-10 04:03:00 -07:00
* `.incbin {filename}`
write an external binary file as-is at this position.
lips will look for the included file
in the directory of the file using the directive.
* `.ascii "some\ntext\0"`
writes a string using its characters' ASCII values.
a few escapes are currently supported: `\ " a b f n r t v 0`
* `.asciiz "some\ntext"`
same as ascii, but with a null byte added to the end.
2015-11-24 13:23:22 -08:00
### Unimplemented
* FLOAT: writes a list of 32-bit floating point numbers until end-of-line.
this may not get implemented due to a lack of aliasing in vanilla Lua,
and thus accuracy issues.