update readme

This commit is contained in:
andromeda
2026-04-04 17:21:21 +02:00
parent a2d66bbb4d
commit 562d5ceee9
2 changed files with 1 additions and 68 deletions

View File

@@ -10,4 +10,4 @@ status: gets to long mode, loads+jumps to kernel, starts idt and gdt... :)
hobby self-hosted assembler
status: tokenises a lot of common stuff, compiles a lot of common stuff... not good enough for anything real-world yet
status: tokenises a lot of common stuff, compiles a lot of common stuff... not good enough for anything real-world yet. It can assemble its own print function!!!

View File

@@ -527,70 +527,3 @@ hlt
0xF4 ; HLT
```
#### program output with the function `print`, each comma-seperated `db` value put onto its own line
editted output of `x/512xb 0x00070000` in [gdb](https://www.sourceware.org/gdb/)
the following is somewhat correct! I just need to a) null-terminate 8-byte chars and b) define all the addresses currently represented as `0xff 0xff 0xff 0xff`
```
0x48 0xff 0xf2
0x48 0xff 0xf0
0x48 0xff 0xf6
0xc7 0xc2 0xf8 0x03 0x00 0x00
0x8a 0x06
0x80 0xf8 0x00
0x0f 0x84 0xff 0xff 0xff 0xff
0x66 0xee
0x48 0xff 0xc6
0xe9 0xff 0xff 0xff 0xff
0x48 0x8f 0xc6
0x48 0x8f 0xc0
0x48 0x8f 0xc2
0xc3
0x48 0xff 0xf6
0xc7 0xc6 0xff 0xff 0xff 0xff
0xe8 0xff 0xff 0xff 0xff
0x48 0x8f 0xc6
0xe9 0xff 0xff 0xff 0xff
0x48 0xff 0xf6
0xc7 0xc6 0xff 0xff 0xff 0xff
0xe8 0xff 0xff 0xff 0xff
0x48 0x8f 0xc6
0xe9 0xff 0xff 0xff 0xff
0x48 0xff 0xf6
0xc7 0xc6 0xff 0xff 0xff 0xff
0xe8 0xff 0xff 0xff 0xff
0x48 0x8f 0xc6
0xe9 0xff 0xff 0xff 0xff
0x48 0xff 0xf6
0xc7 0xc6 0xff 0xff 0xff 0xff
0xe8 0xff 0xff 0xff 0xff
0x48 0x8f 0xc6
0xe9 0xff 0xff 0xff 0xff
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x33 0x36 0x6d 0x00 0x00 0x00 0x00
0x7b 0x44 0x45 0x42 0x55 0x47 0x5d 0x3a
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x30 0x6d 0x00 0x00 0x00 0x00 0x00
0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x31 0x3b 0x33 0x31 0x6d 0x00 0x00
0x7b 0x45 0x52 0x52 0x4f 0x52 0x5d 0x3a
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x30 0x6d 0x00 0x00 0x00 0x00 0x00
0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x31 0x3b 0x33 0x33 0x6d 0x00 0x00
0x5b 0x54 0x45 0x53 0x54 0x5d 0x3a 0x20
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x30 0x6d 0x00 0x00 0x00 0x00 0x00
0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x31 0x3b 0x33 0x35 0x6d 0x00 0x00
0x5b 0x57 0x41 0x52 0x4e 0x5d 0x3a 0x20
0x1b 0x00 0x00 0x00 0x00 0x00 0x00 0x00
0x5b 0x30 0x6d 0x00 0x00 0x00 0x00 0x00
0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
```