blob: c25152e5da2227d80968a256c7de232e3a2ada80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
; https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html
; nasm -f elf test2.s
; gcc -Wall -s test2.o -o test2
BITS 32
GLOBAL main
SECTION .text
main:
mov eax, 42
ret
|