|
Sure. And for non-trivial programs as well. Low level assembly is what you want, that presumably includes interfacing with you favorite C code. Calling conventions, stack frames and so on. Besides, the boilerplate runtime stuff has nothing to do with writing kernel code, so a 'trivial hello world' program will have a lot of cruft added to it: .file "hello.c"
.section .rodata
.LC0:
.string "helo, world!"
.text
.globl main
.type main, @function
main:
leal 4(%esp), %ecx
andl $-16, %esp
pushl -4(%ecx)
pushl %ebp
movl %esp, %ebp
pushl %ecx
subl $20, %esp
movl $.LC0, (%esp)
call puts
addl $20, %esp
popl %ecx
popl %ebp
leal -4(%ecx), %esp
ret
.size main, .-main
.ident "GCC: (Ubuntu 4.3.3-5ubuntu4) 4.3.3"
.section .note.GNU-stack,"",@progbits
that's not that bad.Note the stack frame alignment trick, the fact that 'printf' was specified in the source but puts is being called! |