You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hal/programs/storage.hal

23 lines
272 B

0001 START
# Init counter
0002 LOADIND 1
0003 DIVNUM 2
0004 STOREIND <reg 1>
# counter++
0009 LOAD 1
0010 ADDNUM 1
0011 STORE 1
# loop
0011 JUMP 0002
1000 DUMPREG
1010 DUMPPROG
1020 LOAD 1036
1030 ADDNUM 1
1040 STORE 512
1050 LOAD 1037
1060 ADD 512
1070 OUT 1
1080 STOP