Skip to content

Instantly share code, notes, and snippets.

@fincs
Created June 28, 2012 22:19
Show Gist options
  • Save fincs/3014364 to your computer and use it in GitHub Desktop.
Save fincs/3014364 to your computer and use it in GitHub Desktop.
Tiniest possible FeOS app
.arch armv5te
.section .init
.global __entrypoint
.hidden __entrypoint
.align 2
@ This word-sized space is reserved by the OS.
.word 0
@ r0 - word_t event
@ r1 - word_t prm1
@ r2 - word_t prm2
@ r3 - word_t prm3
.thumb_func
__entrypoint:
mov r0, #0
bx lr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment