Updated tests to use printsignednumber subroutine from debug.pvvs instead of stdio...
[vvhitespace] / stdlib / README.md
CommitLineData
92a92075
AT
1# Overview #
2
3This folder contains a library of useful functions written in VVhitespace.
4Standard include guards are used with `cpp` to include the stdlib in user
2c2764b7
AT
5programs. For an example, see `examples/hello-stdlib`. This also means
6`cpp` syntax must be respected.
92a92075 7
32c440bf
AT
8# Reservations #
9
92a92075
AT
10Since all labels share a global namespace, the standard library makes the
11following reservations:
12
32c440bf
AT
13## Label ##
14
15 00000000 0xxxxxxx - reserved for stdlib function entry points
2c2764b7 16 00000000 1xxxxxxx - available for use in user programs
32c440bf
AT
17 0xxxxxxx xxxxxxxx - reserved for private use by stdlib
18 1xxxxxxx xxxxxxxx - available for use in user programs
19
bb21580a 20## Heap and Pointers ##
32c440bf 21
bb21580a 22The first 16 heap addresses (`0-15`) are reserved when using the stdlib.
6cb31a3e 23Within that reservation, heap[0] is used by `random` and the block
2c2764b7 24heap[1]-heap[15] by the stack rotation subroutines which time-share
6cb31a3e 25pseudo-registers between the various stdlib subroutines.
bb21580a
AT
26
27By convention, functions which return a pointer will use the address `0` to
28represent a `NULL` pointer.
32c440bf
AT
29
30# Entry Points #
31
32The following labels are entry points to stdlib functions. Read the
33header comment for each function to learn the call and return stack.
34
3625ff3a 35 000xxx - reserved
23d17247
AT
36 001xxx - core functions
37 1000 ----- printf (stdio.pvvs)
38 1001 ----- print number from stack (stdio.pvvs)
39 1010 ----- stackrotate (stack.pvvs)
a67867ae 40 1011 ----- stackrotatereverse (stack.pvvs)
f0499c77 41 1100 ----- deepdup (stack.pvvs)
3625ff3a 42 010xxx - math functions
2612f47f 43 10000 ----- random (math.pvvs)
3625ff3a 44 10001 ----- absolute value (math.pvvs)
3695b659
AT
45 011xxx - heap functions
46 11000 ----- memset (heap.pvvs)
3d75b928 47 11001 ----- memcpy (heap.pvvs)
d63de3fa 48 11010 ----- memrand (heap.pvvs)
87d27426 49 11011 ----- memcmp (heap.pvvs)
fd04fb41 50 11100 ----- memsrch (heap.pvvs)
bb21580a
AT
51 11101 ----- <empty>
52 11110 ----- slurp (heap.pvvs)
53 11111 ----- spew (heap.pvvs)
ae1f85a1
AT
54 100xxx - string functions
55 100000 ----- strlen (string.pvvs)
0c56152e
AT
56 101xxx - logic functions
57 101000 ----- not (logic.pvvs)
58 101001 ----- and (logic.pvvs)
59 101010 ----- or (logic.pvvs)
60 101011 ----- xor (logic.pvvs)
61 101100 ----- rshift (logic.pvvs)
62 101101 ----- lshift (logic.pvvs)
1a56830d
AT
63 110xxx - conversion functions
64 111xxx - debug functions
65 111000 ----- dump heap (debug.pvvs)
ae1f85a1 66 111001 ----- dump stack (debug.pvvs)
9f7f68e5
AT
67 111010 ----- print sign (debug.pvvs)
68 111011 ----- print magnitude (debug.pvvs)
69 111100 ----- print string (debug.pvvs)
4fba07dc 70 111101 ----- print signed number (debug.pvvs)
3625ff3a 71 1xxxxxx - reserved for less common entry points
e0d5136c 72 1000000 ----- lowbitand (logic.pvvs)
75098baa 73 1000001 ----- <empty>
ae1f85a1
AT
74 1000010 ----- print sign of number (stdio.pvvs)
75 1000011 ----- print magnitude of number (stdio.pvvs)
b8b65c17
AT
76 1000100 ----- print string from stack (stdio.pvvs)
77 1000101 ----- print string from heap (stdio.pvvs)
32c440bf
AT
78
79# Misc #
80
2c2764b7
AT
81## Private Label Space ##
82
83By convention, each public stdlib label will have 8 bits of private label space
84associated with it, formed as follows:
32c440bf
AT
85
86 00001000 xxxxxxxx - for use by 1000
87 00001001 xxxxxxxx - for use by 1001
92a92075 88 ...etc
2c2764b7
AT
89
90## Extending Heap Reservation ##
91
92By default, the stdlib uses the first 16 heap addresses. All heap access (other
93than heap[0] as a seed) occurs through `stackrotate` and `stackrotatereverse`.
94Edit these functions to increase the stdlib's heap reservation.
95
96The remainder of the stdlib is written to automatically use the new allocation.
97Functions like `printf`, for example, allow more substitutions when the heap
98allocation is increased.