mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-25 23:49:17 +00:00
12 lines
284 B
Plaintext
12 lines
284 B
Plaintext
// should fail analysis with an UnmeaningfulReadError
|
|
// because adding 4 to the accumulator reads the carry
|
|
// but the carry has neither been provided as input
|
|
// nor set to anything in particular by this routine.
|
|
|
|
define add_four routine
|
|
inputs a
|
|
outputs a
|
|
{
|
|
add a, 4
|
|
}
|