blob: 4cb4e8f34b00b82023e6b958d50a06e0a6ca9ba0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
; https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html
; nasm -f bin test7-global.s -o test7
; chmod +x test7
BITS 32
org 0x08048000
ehdr: ; Elf32_Ehdr
db 0x7F, "ELF", 1, 1, 1, 0 ; e_ident
times 8 db 0
dw 2 ; e_type
dw 3 ; e_machine
dd 1 ; e_version
dd _start ; e_entry
dd phdr1 - $$ ; e_phoff
dd 0 ; e_shoff
dd 0 ; e_flags
dw ehdrsize ; e_ehsize
dw phdrsize ; e_phentsize
dw 2 ; e_phnum
dw 0 ; e_shentsize
dw 0 ; e_shnum
dw 0 ; e_shstrndx
ehdrsize equ $ - ehdr
phdr1: ; Elf32_Phdr
dd 1 ; p_type
dd 0 ; p_offset
dd $$ ; p_vaddr
dd $$ ; p_paddr
dd codesize ; p_filesz
dd codesize ; p_memsz
dd 5 ; p_flags = r-x
dd 0x1000 ; p_align
phdrsize equ $ - phdr1
phdr2:
dd 1 ; p_type
dd _data - $$ ; p_offset
dd _data ; p_vaddr
dd _data ; p_paddr
dd datasize ; p_filesz
dd datasize ; p_memsz
dd 6 ; p_flags = rw-
dd 0x1000 ; p_align
_start:
mov ebx, [foo]
mov eax, 1
int 0x80
codesize equ $ - $$ ; TODO: why include the headers?!
alignb 0x1000
_data:
foo: dd 42
datasize equ $ - _data
|