kernel-empty.asm 208 B

1234567891011121314
  1. str_empty:
  2. db 'Unfortunately this is an empty kernel. You will not have fun here...'
  3. db NEWLINE
  4. db 0
  5. start:
  6. ;; Log a sad message...
  7. push str_empty
  8. push 1
  9. call platform_log
  10. add esp, 8
  11. ret