summaryrefslogtreecommitdiff
path: root/tnslc/dummy.tnsl
blob: 1bfbee9fb3c3df38fd530aefd7275a8414b427a4 (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
;struct test {
    int8 i, j, k, l
}

;struct test2 {
    test a, b
}

/; _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"
;/

/; main (uint argc, ~~uint8 argv) [int]
    # ;~void ptr = _alloc(10)
    # ;_delete(ptr)
    # ;return 0
;/