projects:archevo:asia16
This is an old revision of the document!
ASIA-16
ASIA-16 is an ISA, and a successor to ASIA. Each instruction has 16 bits, while ASIA only has 11. Of the five extra bits, four are a new register reference and one is an extra bit of opcode. As there are now three registers, each register reference is four bits and each register holds eight bits, two registers can be put together into a constant, and also have room for a register.
GB | OpCode | Mnemonic | Description |
---|---|---|---|
0 | 0000 | INC C | Increment C. C = C + 1 |
0 | 0001 | DEC C | Decrement C. C = C - 1 |
0 | 0010 | ICC x C | Increment C by x. C = C + x |
0 | 0011 | DCC x C | Decrement C by x. C = C - x |
0 | 0100 | ADD A B C | Add. C = A + B |
0 | 0101 | SUB A B C | Subtract. C = A - B |
0 | 0110 | MUL A B C | Multiply. C = A*B |
0 | 0111 | DIV A B C | Divide (Round down). C = A/B |
0 | 1000 | AND A B C | And. C = A and B |
0 | 1001 | OR A B C | Or. C = A or B |
0 | 1010 | INV A C | Invert. C = not A |
0 | 1011 | XOR A B C | Exclusive Or. C = B xor A |
0 | 1100 | SRL C | Shift C Right. C = C » 1 |
0 | 1101 | SLL C | Shift C Left. C = C « 1 |
0 | 1110 | MOV A C | Move A to C. C = A |
0 | 1111 | LOD x C | Loads a value. C = x |
1 | 0000 | REP | Reproduce. |
1 | 0001 | ATK | Attack. |
1 | 0010 | MOV | Move. |
projects/archevo/asia16.1619461508.txt.gz · Last modified: 2021/04/26 18:25 by Owen Mellema