about summary refs log tree commit diff stats
path: root/subx/teensy/test4.s
blob: c8866dfa500d5d83e2ccf4b72d583b986de5777b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
; https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html
; nasm -f elf test4.s
; gcc -Wall -s -nostdlib test4.o -o test4
BITS 32
GLOBAL _start
SECTION .text
_start:
  mov eax, 1
  mov ebx, 42  
  int 0x80