summaryrefslogtreecommitdiff
path: root/src/sys/np/sample/test-0.np
blob: b4ad2c15b071c7c509a88d1ce15c639737727056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
proc
main() -> i8
begin
    u8 buf[8]

    if argc < 2 begin
        return -1
    end

    for [i=0 : i<8 : i += 2] begin
        buf[i] = 0x07
    end

    return 0
end