blob: eda351af30ba640030dd8df1f94c2ca963b13e66 (
plain)
| 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
 | ;struct test {
    int8 i, j, k, l
}
;struct test2 {
    test a, b
}
/; main (uint argc, ~~uint8 argv) [int]
    # Fix for main func
    ;asm "mov %rdi, %r8"
    ;asm "mov %rsi, %r9"
    # ;~void ptr = _alloc(10)
    # ;_delete(ptr)
    ;return 1
;/
/; _alloc (uint bytes) [~void]
    ;asm "mov %rax, %rdi"
    ;asm "mov $0, %r10"
    ;asm "call malloc"
;/
/; _delete (~void ptr)
    ;asm "mov %rax, %rdi"
    ;asm "mov $0, %r10"
    ;asm "call free"
;/
 |