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

30 lines
340 B

0001 START
# Counter
0002 LOADNUM 4
0003 STORE 1
# Max
0004 LOADNUM 65536
0005 STORE 2
# Loop
0006 LOAD 1
0007 DIVNUM 2
0008 STOREIND 1
0009 MULNUM 2
0010 ADDNUM 1
0011 STORE 1
0012 OUT 1
0013 SUB 2
0014 JUMPNEG 0006
1000 DUMPREG
1010 DUMPPROG
1020 LOAD 1036
1030 ADDNUM 1
1040 STORE 512
1050 LOAD 1037
1060 ADD 512
1070 OUT 1
1080 STOP