Add more test programs
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
v3.0 hex words addressed
|
||||
00: 05 81 0a 82 44 99 0f 82 45 00 80 c1 00 00 00 00
|
||||
00: 05 81 0a 82 44 99 0f 82 45 00 c1 00 00 00 00 00
|
||||
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
17
programs/input_output.cpu8_v1
Normal file
17
programs/input_output.cpu8_v1
Normal file
@ -0,0 +1,17 @@
|
||||
v3.0 hex words addressed
|
||||
00: b1 0a 82 44 9e 00 00 00 00 00 00 00 00 00 00 00
|
||||
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
5
programs/input_output.lasm8_v1
Normal file
5
programs/input_output.lasm8_v1
Normal file
@ -0,0 +1,5 @@
|
||||
# Add 10 to the input number, then output the result
|
||||
MOV input, reg1
|
||||
MOV 10, reg2
|
||||
ADD
|
||||
MOV reg3, output
|
17
programs/nop_and_jump.cpu8_v1
Normal file
17
programs/nop_and_jump.cpu8_v1
Normal file
@ -0,0 +1,17 @@
|
||||
v3.0 hex words addressed
|
||||
00: c0 00 c4 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
4
programs/nop_and_jump.lasm8_v1
Normal file
4
programs/nop_and_jump.lasm8_v1
Normal file
@ -0,0 +1,4 @@
|
||||
# Endless NOP loop
|
||||
NOP
|
||||
MOV 0, reg0
|
||||
JMP
|
Reference in New Issue
Block a user