summaryrefslogtreecommitdiff
path: root/tnslc/dummy.tnsl
blob: c8060224b94af878f0016e6bd56f54443d7847f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;struct test {
    int i, j, k, l
}

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