This commit is contained in:
2026-05-15 22:53:30 -06:00
parent 15e872779e
commit be52c7b97d
6 changed files with 103 additions and 8 deletions
+14
View File
@@ -0,0 +1,14 @@
.text
.globl main
main:
pushq %rbp
movq %rsp, %rbp
movl $18, %edi
callq scm_write
leave
ret
.type main, @function
.size main, .-main
/* end function main */
.section .note.GNU-stack,"",@progbits
+6
View File
@@ -0,0 +1,6 @@
export
function w $main () {
@start
%x0 =l call $scm_write (l 18)
ret %x0
}