Document not found (404)
+This URL is invalid, sorry. Please use the navigation bar or search to continue.
+ +diff --git a/.vscode/settings.json b/.vscode/settings.json index 7ade51f..e6f31fd 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,4 +8,8 @@ "files.trimTrailingWhitespace": true, "gitea.owner": "LowLevelDevs", "gitea.repo": "damn_simple_architecture", + "[markdown]": { + "editor.formatOnSave": true, + "editor.formatOnPaste": true + } } diff --git a/book/.nojekyll b/book/.nojekyll new file mode 100644 index 0000000..f173110 --- /dev/null +++ b/book/.nojekyll @@ -0,0 +1 @@ +This file makes sure that Github Pages doesn't process mdBook's output. diff --git a/book/404.html b/book/404.html new file mode 100644 index 0000000..ef69f17 --- /dev/null +++ b/book/404.html @@ -0,0 +1,227 @@ + + +
+ + +Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+This URL is invalid, sorry. Please use the navigation bar or search to continue.
+ +Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Below is an overview of the instruction set and the various operands. This table is non-exhaustive and may be updated as the design changes. Please note that the table spans multiple pages.
+Also note that immediate (constant/literal) arguments are 16-bits long in I (immediate argument) typed instructions. For more information on this, refer to instruction encoding.
+| Type | Description |
|---|---|
| R | Used when an instruction takes one or more register arguments, but no immediates. This type is also used by shift and rotation operations, as it contains a 5 bit shift amount field. |
| I | Used when an instruction takes at most two register arguments as well as a halfword immediate argument. This is typically used by immediate arithmetic operations e.g. addi, as well as loads and stores (where a base register and immediate offset are passed). Also used by branching instructions. The operand is a signed offset from the current value of PCX. |
| J | Used by jumps excluding jr, which uses a register as its argument. Jumps are absolute addresses, but there is a 256MB region around PCX since the argument is 26 bits. Since arguments are always word aligned, we bitshift left twice and set the upper 4 bits to match that of the value in PCX. This then forms a valid word-sized address. |
Note: +J-type instructions are currently unused.
+| Bits 31-26 | Bits 25-21 | Bits 20-16 | Bits 15-11 | Bits 10-6 | Bits 5-0 |
|---|---|---|---|---|---|
| Opcode | Source Reg 1 | Source Reg 2 | Destination Reg | Shift Amount | Unused |
The shift amount must be 0 when the opcode does not match a shift instruction or else the CPU will assert an Illegal Instruction exception.
+If any register field is not used, it should be set to the special value NOREG, defined in the Registers section of this document. Failure to do so may result in an Illegal Instruction exception as this is undefined for an instruction that does not expect this argument to be provided.
+| Bits 31-26 | Bits 25-21 | Bits 20-16 | Bits 15-0 |
|---|---|---|---|
| Opcode | Source Reg | Dest Reg | 16-bit immediate |
I-type instructions are used when 16-bit immediate arguments are desired. This could be for +immediate arithmetic instructions (like adding 10 to the value in ACC), or loads and stores, where we may want to access the ith index of an array using an offset.
+| Bits 31-26 | Bits 25-0 |
|---|---|
| Opcode | Address |
J-type instructions are used for absolute jumps.
+The 26-bit address is converted to a 32-bit address by: +The 26-bit address field is shifted left by 2 bits (due to word alignment we ignore the 2 least significant bits). +Combined with the upper 4 bits of the PC to form a 32-bit address (bitwise OR).
+The jump range: 256MB region around current PC. For longer jumps than this, see jr (Jump to word address in register).
+To compute this address, the linker should find the address of the label, cut off the top 4 bits, then rightward shift twice. The CPU will then convert this to the actual 32-bit address following the steps outlined above.
+| Hex | Type | Mnemonic | Operands | Description |
|---|---|---|---|---|
| 0x00 | R | NOP | n/a | No operation - a blank line. |
| 0x01 | R | MOV | SrcReg, DestReg | Copies from SrcReg to DestReg. |
| 0x02 | R | MOVS | SrcReg, DestReg | Copies from SrcReg to DestReg, sign extending the value to take up a full word. |
| 0x03 | I | LDB | BaseReg, Offset, DestReg | Loads a byte from memory address (base + offset) into DestReg. The effective address must be byte-aligned. |
| 0x04 | I | LDBS | BaseReg, Offset, DestReg | Loads a sign-extended byte from memory address (base + offset) into DestReg. The effective address must be byte-aligned. |
| 0x05 | I | LDH | BaseReg, Offset, DestReg | Loads a half-word from memory address (base + offset) into DestReg. The effective address must be 2-byte-aligned. |
| 0x06 | I | LDHS | BaseReg, Offset, DestReg | Loads a sign-extended half-word from memory address (base + offset) into DestReg. The effective address must be 2-byte-aligned. |
| 0x07 | I | LDW | BaseReg, Offset, DestReg | Loads a word from memory address (base + offset) into DestReg. The effective address must be 4-byte-aligned. |
| 0x08 | I | STB | SrcReg, BaseReg, Offset | Stores a byte from SrcReg in memory address (base + offset). The effective address must be byte-aligned. |
| 0x09 | I | STH | SrcReg, BaseReg, Offset | Stores a half-word from SrcReg in memory address (base + offset). The effective address must be 2-byte-aligned. |
| 0x0A | I | STW | SrcReg, BaseReg, Offset | Stores a word from SrcReg in memory address (base + offset). The effective address must be 4-byte-aligned. |
| 0x0B | I | LLI | DstReg, Value | Loads a 16-bit literal value into reg, setting the bottom 16 bits of the word. To populate the upper 16 bits, see LUI. |
| 0x0C | I | LUI | DstReg, Value | Loads a 16-bit literal value into reg, setting the top 16 bits of the word. To populate the lower 16 bits, see LLI. |
| 0x0D | I | JMP | DestReg, Offset | Address | Unconditionally jumps to the calculated address or direct address. |
| 0x0E | I | JEQ | DestReg, Offset | Address | Jumps to the calculated address or direct address if equal flag set. |
| 0x0F | I | JNE | DestReg, Offset | Address | Jumps to the calculated address or direct address if the equal flag is not set. |
| 0x10 | I | JGT | DestReg, Offset | Address | Jumps to the calculated address or direct address if greater than flag set. |
| 0x11 | I | JGE | DestReg, Offset | Address | Jumps to the calculated address or direct address if greater than flag or equal flag set. |
| 0x12 | I | JLT | DestReg, Offset | Address | Jumps to the calculated address or direct address if less than flag set. |
| 0x13 | I | JLE | DestReg, Offset | Address | Jumps to the calculated address or direct address if less than flag or equal flag set. |
| 0x14 | R | CMP | Reg1, Reg2 | Compares the value of Reg1 to the value in Reg2. The results of the comparisons are set in the Status register. |
| 0x15 | R | INC | Reg | Increments the value in the given register. |
| 0x16 | R | DEC | Reg | Decrements the value in the given register. |
| 0x17 | R | SHL | Reg, Literal | ValReg | Left shifts the value in Reg by the given amount (either a register, or a literal value). |
| 0x18 | R | SHR | Reg, Literal | ValReg | Right shifts the value in Reg by the given amount (either a register, or a literal value). |
| 0x19 | R | ADD | Src1, Src2, Dest | Adds the value of Src2 to Src1 and writes the result to Dest. |
| 0x1A | R | SUB | Src1, Src2, Dest | Subtracts the value of Src2 from Src1 and writes the result to Dest. |
| 0x1B | R | AND | Src1, Src2, Dest | Performs bitwise AND on Src1 and Src2 storing the result in Dest. |
| 0x1C | R | OR | Src1, Src2, Dest | Performs bitwise OR on Src1 and Src2 storing the result in Dest. |
| 0x1D | R | NOT | Src, Dest | Performs bitwise NOT on Src storing the result in Dest. |
| 0x1E | R | XOR | Src1, Src2, Dest | Performs bitwise XOR on Src1 and Src2 storing the result in Dest. |
| 0x1F | R | NAND | Src1, Src2, Dest | Performs bitwise NAND on Src1 and Src2 storing the result in Dest. |
| 0x20 | R | NOR | Src1, Src2, Dest | Performs bitwise NOR on Src1 and Src2 storing the result in Dest. |
| 0x21 | R | XNOR | Src1, Src2, Dest | Performs bitwise XNOR on Src1 and Src2 storing the result in Dest. |
| 0x22 | I | INT | Literal | Initiates an interrupt with the given 8 bit interrupt code. Triggering an interrupt invokes the following behaviour: The return address is saved to the RET register. The stack base ptr is set to the kernel stack. |
| 0x23 | R | IRT | n/a | Returns from an interrupt. |
| 0x24 | R | HLT | n/a | Halts the processor. |
| 0x25 | I | IADD | Src1, Literal, Dest | An immediate version of addition taking a 16-bit immediate value. |
| 0x26 | I | ISUB | Src1, Literal, Dest | An immediate version of subtraction taking a 16-bit immediate value. |
Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+This document provides a comprehensive reference for the DSA (Damn Simple Architecture) assembly language, including all hardware instructions and pseudo-instructions with their syntax variations and usage examples.
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+| Step | Responsibility | Action | Description |
|---|---|---|---|
| 0 | Caller | Save Current State | Ensure that any registers with important data in are pushed to the stack so that they can be restored later. |
| 1 | Caller | Push arguments | Push exactly n arguments to the stack (in order, last argument pushed first) |
| 2 | Caller | Call function | Execute call namespace::functionthis automatically pushes the return address (pcx) and jumps to the function |
| 3 | Function | Set up stack frame | Execute push bpr; mov spr, bpr to establish new stack frame |
| 4 | Function | Access arguments | Read arguments starting at spr+8 (first 3 args at offsets 8, 12, 16) |
| 5 | Function | Execute function | Perform the function's operations using the arguments |
| 6 | Function | Store return value | Write return value (if any) to spr+8 |
| 7 | Function | Restore stack frame | Execute mov bpr, spr; pop bpr to restore previous stack frame |
| 8 | Function | Return | Execute return pseudo-instruction to return to caller |
| 9 | Caller | Clean up stack | Pop exactly n arguments from the stack to clean up |
| 10 | Caller | Handle unused values | Use pop zero to discard any unused stack values if needed |
| 11 | Caller | Restore State | Pop any registers that were pushed in step 0 (or pop zero if no longer needed) |
Notes:
+include statementcall pseudo-instruction automatically handles return address management so long as the callee does not mess with the stack| Mnemonic | Operands | Description |
|---|---|---|
| CALL | namespace::function | Call a function with automatic return address management |
| RETURN | - | Return from a function to the caller |
Examples:
+call-local.dsa
// ensure the stack is set up first!
+
+caller:
+ push rg0
+ push rg1
+
+ call callee // make call to a local function
+ pop rg0 // put result in rg0
+ pop zero // void second return val
+
+callee:
+ // setup new stack frame
+ push bpr
+ mov spr, bpr
+
+ // function body
+
+ // restore the stack frame
+ mov bpr, spr
+ pop bpr
+ return ; Return from the current function
+
+call-external.dsa
include external "./external.dsa"
+
+// ensure the stack is set up first!
+db string: "Hello, world!"
+caller:
+ // push args
+ lwi string, rg0
+ push rg0
+ call external::callee // do something with the string
+ pop zero
+
+external.dsa
callee:
+ // set up the stack
+ push bpr
+ mov spr, bpr
+
+ // function body
+
+ // restore the stack frame
+ mov bpr, spr
+ pop bpr
+ return ; Return from the current function
+
+
+ Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+// multiply.dsa
+// usage:
+//
+// include multiply "<relative path>"
+//
+// usage for multiply:
+// push (arg1)
+// push (arg0)
+// call multiply::multiply
+// pop (arg0)
+// pop (arg1)
+
+multiply:
+ push bpr
+ mov spr, bpr
+
+ ldw bpr, rg0, 8 // load op 1
+ ldw bpr, rg1, 12 // load op 2
+
+ lli 0, acc // initialize accumulator
+
+start:
+ add acc, rg0, acc
+ dec rg1
+
+ cmp rg1, zero
+ jgt start
+
+end:
+ stw acc, bpr, 8 // store result for caller
+ mov bpr, spr
+ pop bpr
+ return
+
+// print.dsa
+// usage:
+//
+// include print "<relative path>"
+//
+// usage for print:
+// push (register containing address of string)
+// call print::print
+// pop zero
+//
+// usage for reset:
+// call print::reset
+
+dw display: 0x20000
+dw current: 0x20000
+
+// prints the given text to the screen.
+print:
+ push bpr
+ mov spr, bpr
+
+ ldw bpr, rg0, 8 // get string address argument
+ ldw current, rg1 // get current display position
+
+print_loop:
+ ldb rg0, acc
+ stb acc, rg1
+
+ iadd rg0, 1
+ iadd rg1, 1
+
+ cmp acc, zero
+ jne print_loop
+ jmp end
+
+// return
+end:
+ stw rg1, current
+
+ mov bpr, spr
+ pop bpr
+ return
+
+// resets the cursor position on the screen
+reset:
+ push bpr
+ mov spr, bpr
+ ldw display, rg1
+ stw rg1, current
+ mov bpr, spr
+ pop bpr
+ return
+
+include print "./print.dsa"
+
+dw stack: 0x10000
+db string: "'To confuse your enemy, you must first confuse yourself' - Probably Sun Tzu."
+
+init:
+ // set up a stack.
+ ldw stack, bpr
+ mov bpr, spr
+
+start:
+ lwi string, rg1
+
+ // push string address argument
+ push rg1
+ // call print function
+ call print::print
+ // clean up stack
+ pop rg1
+
+ hlt
+
+
+ Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+| Mnemonic | Syntax | Description |
|---|---|---|
| INCLUDE | alias[:] "path" | Include module symbols |
Notes:
+Examples:
+include print "./lib/print.dsa"
+include maths "./lib/maths.dsa"
+
+External symbols are accessed using the :: operator.
Examples:
+include print "./lib/print.dsa"
+
+init:
+ // ensure we have a stack setup so we can call functions properly
+
+db string: "Hello world!"
+
+start:
+ // load the address of the string into rg1.
+ lwi string, rg1
+ // push the string address argument
+ push rg1
+ // call the print function
+ call print::print
+ // clean up the stack
+ pop zero
+ hlt
+
+
+ Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+This section is a complete overview of the assembly language and instructions. It includes both the hardware instructions that translate directly to machine code as well as pseudo instructions and directives that are translated to hardware instructions or directives by the assembler.
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+| Mnemonic | Syntax | Description |
|---|---|---|
| DB | name: value1 [, value2, ...] | Define bytes(byte aligned) |
| DH | name: value1 [, value2, ...] | Define half-words(2 byte aligned) |
| DW | name: value1 [, value2, ...] | Define words(4 byte aligned) |
Examples:
+db message: "Hello World", 0, 0x20, 231
+dh numbers: 1000, 2000, 3000
+dw stack: 0x10000
+
+Notes:
+| Mnemonic | Syntax | Description |
|---|---|---|
| RESB | name: size | Reserve bytes |
| RESH | name: size | Reserve half-words |
| RESW | name: size | Reserve words |
Examples:
+resb buffer: 256 ; Reserve 256 bytes
+resh array: 100 ; Reserve space for 100 half-words
+resw heap: 1024 ; Reserve space for 1024 words
+
+| Mnemonic | Syntax | Description |
|---|---|---|
| INCLUDE | module_name "path" | Include module symbols |
| More details on the module System |
Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+| Mnemonic | Operands | Description |
|---|---|---|
| MOV | src_reg, dest_reg | Copy value from source to destination register |
| MOVS | src_reg, dest_reg | Copy with sign extension |
Examples:
+mov rg0, rg1 ; Copy rg0 to rg1
+movs rg0, rg1 ; Copy rg0 to rg1 with sign extension
+
+| Mnemonic | Operands | Description |
|---|---|---|
| LDB | base_reg, dest_reg [, offset]label, dest_reg [, offset] | Load byte from memory |
| LDBS | base_reg, dest_reg [, offset]label, dest_reg [, offset] | Load byte with sign extension |
| LDH | base_reg, dest_reg [, offset]label, dest_reg [, offset] | Load half-word (16-bit) |
| LDHS | base_reg, dest_reg [, offset]label, dest_reg [, offset] | Load half-word with sign extension |
| LDW | base_reg, dest_reg [, offset]label, dest_reg [, offset] | Load word (32-bit) |
Examples:
+; Direct register addressing
+ldb rg0, rg1 ; Load byte from address in rg0
+ldw rg0, rg1, 8 ; Load word from (rg0 + 8)
+
+; Label addressing
+ldb buffer, rg2 ; Load byte from label 'buffer'
+ldw stack, bpr ; Load stack address into base pointer
+
+Label Expansions:
+; ldb buffer, rg2 expands to:
+lli buffer, rg2 ; Load lower 16 bits of buffer address
+lui buffer, rg2 ; Load upper 16 bits of buffer address
+ldb rg2, rg2 ; Load byte from address in rg2
+
+; ldw stack, bpr expands to:
+lli stack, bpr ; Load lower 16 bits of stack address
+lui stack, bpr ; Load upper 16 bits of stack address
+ldw bpr, bpr ; Load word from address in bpr
+
+| Mnemonic | Operands | Description |
|---|---|---|
| STB | src_reg, base_reg [, offset]src_reg, label [, offset] | Store byte to memory |
| STH | src_reg, base_reg [, offset]src_reg, label [, offset] | Store half-word to memory |
| STW | src_reg, base_reg [, offset]src_reg, label [, offset] | Store word to memory |
Examples:
+; Direct register addressing
+stb rg0, rg1 ; Store byte from rg0 to address in rg1
+stw rg0, rg1, 12 ; Store word to (rg1 + 12)
+
+; Label addressing
+stb acc, buffer ; Store byte from accumulator to 'buffer'
+stw rg1, current ; Store word to 'current' variable
+
+Label Expansions:
+; stb acc, buffer expands to:
+lli buffer, rgf ; Load lower 16 bits of buffer address
+lui buffer, rgf ; Load upper 16 bits of buffer address
+stb acc, rgf ; Store byte from acc to address in rgf
+
+; stw rg1, current expands to:
+lli current, rgf ; Load lower 16 bits of current address
+lui current, rgf ; Load upper 16 bits of current address
+stw rg1, rgf ; Store word from rg1 to address in rgf
+
+| Mnemonic | Operands | Description |
|---|---|---|
| LLI | imm, dest_reg | Load 16-bit immediate into lower 16 bits Clears upper 16 bits! |
| LUI | imm, dest_reg | Load 16-bit immediate into upper 16 bits |
Usage
+ensure that you always run Lli before Lui as Lli clears the upper 16 bits.
+Examples:
+lli 0x1234, rg0 ; Load 0x1234 into lower 16 bits of rg0
+lui 0xABCD, rg0 ; Load 0xABCD into upper 16 bits of rg0
+
+| Mnemonic | Operands | Description |
|---|---|---|
| JMP | addr [, offset_reg]imm, offset_reg | Unconditional jump |
| JEQ | addr [, offset_reg] | Jump if equal flag set |
| JNE | addr [, offset_reg] | Jump if not equal flag set |
| JGT | addr [, offset_reg] | Jump if greater than flag set |
| JGE | addr [, offset_reg] | Jump if greater or equal flags set |
| JLT | addr [, offset_reg] | Jump if less than flag set |
| JLE | addr [, offset_reg] | Jump if less or equal flags set |
Examples:
+jmp start ; Jump to label 'start'
+jmp 4, ret ; Jump to address (4 + ret register)
+jeq end ; Jump to 'end' if equal flag set
+jgt loop ; Jump to 'loop' if greater than flag set
+
+| Mnemonic | Operands | Description |
|---|---|---|
| ADD | src1_reg, src2_reg, dest_reg | Addition |
| SUB | src1_reg, src2_reg, dest_reg | Subtraction |
| IADD | src_reg, imm [, dest_reg] | Immediate addition |
| ISUB | src_reg, imm [, dest_reg] | Immediate subtraction |
| INC | reg | Increment register by 1 |
| DEC | reg | Decrement register by 1 |
Examples:
+add rg0, rg1, rg2 ; rg2 = rg0 + rg1
+sub rg0, rg1, rg2 ; rg2 = rg0 - rg1
+iadd rg0, 10 ; rg0 = rg0 + 10
+// or using alternate syntax
+addi rg0, 1 ; rg0 = rg0 + 1
+inc rg0 ; rg0 = rg0 + 1
+
+| Mnemonic | Operands | Description |
|---|---|---|
| AND | src1_reg, src2_reg, dest_reg | Bitwise AND |
| OR | src1_reg, src2_reg, dest_reg | Bitwise OR |
| XOR | src1_reg, src2_reg, dest_reg | Bitwise XOR |
| NOT | src_reg, dest_reg | Bitwise NOT |
| NAND | src1_reg, src2_reg, dest_reg | Bitwise NAND |
| NOR | src1_reg, src2_reg, dest_reg | Bitwise NOR |
| XNOR | src1_reg, src2_reg, dest_reg | Bitwise XNOR |
Examples:
+and rg0, rg1, rg2 ; rg2 = rg0 & rg1
+not rg0, rg1 ; rg1 = ~rg0
+
+| Mnemonic | Operands | Description |
|---|---|---|
| SHL | reg, shift_amount | Shift left |
| SHR | reg, shift_amount | Shift right |
Examples:
+shl rg0, 2 ; Shift rg0 left by 2 bits
+shr rg0, 3 ; Shift rg0 right by 3 bits
+
+| Mnemonic | Operands | Description |
|---|---|---|
| CMP | reg1, reg2 | Compare registers and set flags |
Examples:
+cmp rg0, zero ; Compare rg0 with zero register
+cmp rg1, rg2 ; Compare rg1 with rg2
+
+| Mnemonic | Operands | Description |
|---|---|---|
| HLT | - | Halt processor execution |
| NOP | - | No operation |
| INT | interrupt_code | Trigger interrupt |
| IRT | - | Return from interrupt |
Examples:
+hlt ; Stop processor execution
+int 0x21 ; Trigger interrupt 0x21
+
+
+ Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+| Mnemonic | Operands | Description |
|---|---|---|
| PUSH | reg | Push register value onto stack |
| POP | reg | Pop stack value into register |
Examples:
+push rg0 ; Push rg0 value onto stack
+pop ret ; Pop return address
+
+| Mnemonic | Operands | Description |
|---|---|---|
| LWI | name, reg | Load address into register |
Examples:
+lwi string, rg1 ; Load address of 'string' into rg1
+
+
+ Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+| Register | Type | Description |
|---|---|---|
rg0-rgf | General Purpose | General-purpose registers. |
acc | Special | Accumulator for calculations and temporary storage - don't use this for variables as pseudo instructions may overwrite this implicitly! |
spr | Special | Stack pointer |
bpr | Special | Base pointer for stack frames |
ret | Special | Return address register |
idr | Privileged | Interrupt descriptor table address on-read/write: protection fault (unless in kernel mode) |
mmr | Privileged | Hardware memory map table address on-read/write: protection fault (unless in kernel mode) |
zero | Read-only | Always contains zero on-read: always returns zero on-write: value is voided |
pcx | Read-only | Program counter on-write: protection fault |
noreg | Placeholder | Indicates absence of register argument on-read/write: illegal instruction fault |
Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+git clone https://git.zxq5.dev/LowLevelDevs/damn_simple_architecture.git
+cd damn_simple_architecture
+
+cd assembler
+cargo build --release
+
+<binary> -i <input_file.dsa> -o <output_file.dsb>
+
+
+ Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+The DSA Emulator is a visual emulator that allows you to debug and test your programs in a controlled environment. It is composed of a control panel, memory inspector, and a built in editor.
+The control panel lets you view all of the registers, step through the instructions, and view the current instruction counter.
+The memory inspector lets you view any region of memory in the emulator.
+The editor contains a built in assembler instance, so you can edit and assemble your code from the comfort of the emulator.
+The loader is responsible for loading your code into memory so that the emulator can run it.
+ +Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+Press ← or → to navigate between chapters
+Press S or / to search in the book
+Press ? to show this help
+Press Esc to hide this help
+