Huge work; i'm too tired to write commit message for all of it. Pleez let me sleep acouple of hours. Made most tests work. Started SBC.

This commit is contained in:
egormanga
2020-03-18 07:00:12 +03:00
parent 7badd31e42
commit 27d951227d
51 changed files with 3004 additions and 717 deletions
Executable
BIN
View File
Binary file not shown.
+16
View File
@@ -0,0 +1,16 @@
bits 64
;section .rodata
hw: db "hw", 0
.text
global _start
extern puts
_start:
push rbp
mov rbp, rsp
lea rdi, [hw+rip]
call puts
mov rax, 0
pop rbp
ret
+1
View File
@@ -0,0 +1 @@
main() {puts("hw");}
BIN
View File
Binary file not shown.