Skip to content

Instantly share code, notes, and snippets.

@nisargap
Created November 17, 2016 23:44
Show Gist options
  • Save nisargap/0950b28603dcf79198cac0722520c5ce to your computer and use it in GitHub Desktop.
Save nisargap/0950b28603dcf79198cac0722520c5ce to your computer and use it in GitHub Desktop.
.equ SWI_PrChr, 0x00
.equ SWI_Exit, 0x11
_start:
mov r0, #'A
swi SWI_PrChr
mov r0, #'\n
swi SWI_PrChr
mov r0, #'B
swi SWI_PrChr
swi SWI_Exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment