This is a stack-based calculator that can run in Whitespace.
Several functions and strings are written in its 1330 lines.
Modifications were made to the interpreter for debugging it.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 | # Encode string "Items on stack: " (0)
push 0
push 16
set
push 1
push 73
set
push 2
push 116
set
push 3
push 101
set
push 4
push 109
set
push 5
push 115
set
push 6
push 32
set
push 7
push 111
set
push 8
push 110
set
push 9
push 32
set
push 10
push 115
set
push 11
push 116
set
push 12
push 97
set
push 13
push 99
set
push 14
push 107
set
push 15
push 58
set
push 16
push 32
set
# Encode string '' (17)
# HEAP[17] already equals 0.
# Encode string 'Number to add to stack: ' (18)
push 18
push 24
set
push 19
push 78
set
push 20
push 117
set
push 21
push 109
set
push 22
push 98
set
push 23
push 101
set
push 24
push 114
set
push 25
push 32
set
push 26
push 116
set
push 27
push 111
set
push 28
push 32
set
push 29
push 97
set
push 30
push 100
set
push 31
push 100
set
push 32
push 32
set
push 33
push 116
set
push 34
push 111
set
push 35
push 32
set
push 36
push 115
set
push 37
push 116
set
push 38
push 97
set
push 39
push 99
set
push 40
push 107
set
push 41
push 58
set
push 42
push 32
set
# Encode string 'Do want to add a number? ' (43)
push 43
push 25
set
push 44
push 68
set
push 45
push 111
set
push 46
push 32
set
push 47
push 119
set
push 48
push 97
set
push 49
push 110
set
push 50
push 116
set
push 51
push 32
set
push 52
push 116
set
push 53
push 111
set
push 54
push 32
set
push 55
push 97
set
push 56
push 100
set
push 57
push 100
set
push 58
push 32
set
push 59
push 97
set
push 60
push 32
set
push 61
push 110
set
push 62
push 117
set
push 63
push 109
set
push 64
push 98
set
push 65
push 101
set
push 66
push 114
set
push 67
push 63
set
push 68
push 32
set
# Encode string 'yn' (69)
push 69
push 2
set
push 70
push 121
set
push 71
push 110
set
# Encode string '\b' (72)
push 72
push 1
set
push 73
push 8
set
# Encode string ' ' (74)
push 74
push 1
set
push 75
push 32
set
# Encode string 'MENU\n====\n+ = Add\n- = Sub\n* = Mul\n
# / = Div\n% = Mod\nT = Top\nD = Dump\nQ = Quit\nChoice? ' (76)
push 76
push 84
set
push 77
push 77
set
push 78
push 69
set
push 79
push 78
set
push 80
push 85
set
push 81
push 10
set
push 82
push 61
set
push 83
push 61
set
push 84
push 61
set
push 85
push 61
set
push 86
push 10
set
push 87
push 43
set
push 88
push 32
set
push 89
push 61
set
push 90
push 32
set
push 91
push 65
set
push 92
push 100
set
push 93
push 100
set
push 94
push 10
set
push 95
push 45
set
push 96
push 32
set
push 97
push 61
set
push 98
push 32
set
push 99
push 83
set
push 100
push 117
set
push 101
push 98
set
push 102
push 10
set
push 103
push 42
set
push 104
push 32
set
push 105
push 61
set
push 106
push 32
set
push 107
push 77
set
push 108
push 117
set
push 109
push 108
set
push 110
push 10
set
push 111
push 47
set
push 112
push 32
set
push 113
push 61
set
push 114
push 32
set
push 115
push 68
set
push 116
push 105
set
push 117
push 118
set
push 118
push 10
set
push 119
push 37
set
push 120
push 32
set
push 121
push 61
set
push 122
push 32
set
push 123
push 77
set
push 124
push 111
set
push 125
push 100
set
push 126
push 10
set
push 127
push 84
set
push 128
push 32
set
push 129
push 61
set
push 130
push 32
set
push 131
push 84
set
push 132
push 111
set
push 133
push 112
set
push 134
push 10
set
push 135
push 68
set
push 136
push 32
set
push 137
push 61
set
push 138
push 32
set
push 139
push 68
set
push 140
push 117
set
push 141
push 109
set
push 142
push 112
set
push 143
push 10
set
push 144
push 81
set
push 145
push 32
set
push 146
push 61
set
push 147
push 32
set
push 148
push 81
set
push 149
push 117
set
push 150
push 105
set
push 151
push 116
set
push 152
push 10
set
push 153
push 67
set
push 154
push 104
set
push 155
push 111
set
push 156
push 105
set
push 157
push 99
set
push 158
push 101
set
push 159
push 63
set
push 160
push 32
set
# Encode string '+-*/%tdq' (161)
push 161
push 8
set
push 162
push 43
set
push 163
push 45
set
push 164
push 42
set
push 165
push 47
set
push 166
push 37
set
push 167
push 116
set
push 168
push 100
set
push 169
push 113
set
# Encode string 'Top: ' (170)
push 170
push 5
set
push 171
push 84
set
push 172
push 111
set
push 173
push 112
set
push 174
push 58
set
push 175
push 32
set
# Encode string 'Stack[' (176)
push 176
push 6
set
push 177
push 83
set
push 178
push 116
set
push 179
push 97
set
push 180
push 99
set
push 181
push 107
set
push 182
push 91
set
# Encode string '] = ' (183)
push 183
push 4
set
push 184
push 93
set
push 185
push 32
set
push 186
push 61
set
push 187
push 32
set
# Encode string 'Error: ' (188)
push 188
push 7
set
push 189
push 69
set
push 190
push 114
set
push 191
push 114
set
push 192
push 111
set
push 193
push 114
set
push 194
push 58
set
push 195
push 32
set
# Encode string 'DIV' (196)
push 196
push 3
set
push 197
push 68
set
push 198
push 73
set
push 199
push 86
set
# Encode string ' is illegal.' (200)
push 200
push 12
set
push 201
push 32
set
push 202
push 105
set
push 203
push 115
set
push 204
push 32
set
push 205
push 105
set
push 206
push 108
set
push 207
push 108
set
push 208
push 101
set
push 209
push 103
set
push 210
push 97
set
push 211
push 108
set
push 212
push 46
set
# Encode string 'MOD' (213)
push 213
push 3
set
push 214
push 77
set
push 215
push 79
set
push 216
push 68
set
# This is the main program loop.
# Stack starts at HEAP[217]
part "MAIN"
push 217
call "STACK_SIZE"
push 217
call "GET_INPUT"
goto "MAIN"
# def get_number(stack):
# print('Number to add to stack: ')
# number = int(input())
# append(stack, number)
part "GET_NUMBER"
push 18
call "PRINT"
push -1
copy
iint
get
call "APPEND"
back
# def append(stack, number):
# ptr = arg[0]
# val = get(ptr)
# val += 1
# set(prt, val)
# #
# a = stack
# b = stack
# b = get(stack)
# ptr = a + b
# set(ptr, number)
# del stack_ptr
part "APPEND"
# Increase stack size by one
copy 1
get
push 1
add
copy 2
swap
set
# Store number in the open spot.
copy 1
copy 2
get
add
swap
set
away
back
# def in_array(array, key):
# if len(array) <= 0:
# return 0
# offset = 1
# while offset - len(array) >= 0:
# ptr = array.ptr + offset
# if array[ptr] == key:
# return 1
# offset += 1
# return 0
part "IN_ARRAY"
# Line 1-2
copy 1
get
less "__IA_RET_1"
copy 1
get
zero "__IA_RET_1"
# Line 3
push 1
# Line 4
part "__IA_LOOP"
copy
copy 3
get
swap
sub
less "__IA_RET_2"
# Line 5
copy 2
copy 1
add
# Line 6
get
copy 2
sub
zero "__IA_RET_3"
# Line 8
push 1
add
goto "__IA_LOOP"
# Line 9
part "__IA_RET_3"
away
push 1
away 2
back
part "__IA_RET_2"
away
part "__IA_RET_1"
push 0
away 2
back
# def get_key_press(array):
# while True:
# key = getch()
# found = in_array(array, key)
# if found:
# return key
# if key == '\b':
# putch(' ')
# else:
# putch('\b')
# putch(' ')
# putch('\b')
part "GET_KEY_PRESS"
# Line 2
push -1
copy
ichr
get
# Line 3
copy 1
copy 1
call "IN_ARRAY"
# Line 4
zero "__GKP_FIX"
# Line 5
away 1
back
part "__GKP_FIX"
# Line 6
push 8
sub
zero "__GKP_PRINT_SPACE"
# Line 8-11
push 72
call "PRINT"
push 74
call "PRINT"
push 72
call "PRINT"
goto "GET_KEY_PRESS"
part "__GKP_PRINT_SPACE"
# Line 7
push 74
call "PRINT"
goto "GET_KEY_PRESS"
# def get_mode():
# print('Do want to add a number? ')
# key = get_key_press('yn')
# print()
# if key == 'y':
# return 1
# return 0
part "GET_MODE"
push 43
call "PRINT"
push 69
call "GET_KEY_PRESS"
push 17
call "PRINT_LINE"
push 121
sub
zero "__GM_RETURN"
push 0
back
part "__GM_RETURN"
push 1
back
# def add_array(array):
# array.len -= 1
# end_ptr = array.ptr + array.len
# last1 = array[end_ptr + 1]
# last2 = array[end_ptr]
# end, array = last1 + last2, array
# array[array.ptr + array.len] = end
part "ADD_ARRAY"
# Line 1
copy
copy
get
push 1
sub
set
# Line 2
copy
copy
get
add
# Line 3
copy
push 1
add
get
# Line 4
swap
get
# Line 5
add
swap
# Line 6
copy
get
add
swap
set
back
# def sub_array(array):
# array.len -= 1
# end_ptr = array.ptr + array.len
# last1 = array[end_ptr + 1]
# last2 = array[end_ptr]
# end, array = last2 - last1, array
# array[array.ptr + array.len] = end
part "SUB_ARRAY"
# Line 1
copy
copy
get
push 1
sub
set
# Line 2
copy
copy
get
add
# Line 3
copy
push 1
add
get
# Line 4
swap
get
# Line 5
swap
sub
swap
# Line 6
copy
get
add
swap
set
back
# def mul_array(array):
# array.len -= 1
# end_ptr = array.ptr + array.len
# last1 = array[end_ptr + 1]
# last2 = array[end_ptr]
# end, array = last1 * last2, array
# array[array.ptr + array.len] = end
part "MUL_ARRAY"
# Line 1
copy
copy
get
push 1
sub
set
# Line 2
copy
copy
get
add
# Line 3
copy
push 1
add
get
# Line 4
swap
get
# Line 5
mul
swap
# Line 6
copy
get
add
swap
set
back
# def show_last(array):
# print('Top: ')
# ptr = len(array) + array.ptr
# print(*ptr)
# print()
part "SHOW_LAST"
# Line 1
push 170
call "PRINT"
# Line 2
copy
get
add
# Line 3
get
oint
# Line 4
push 17
call "PRINT_LINE"
back
# def dump_array(array):
# if len(array) <= 0:
# return
# offset = 1
# while len(array) - offset >= 0:
# ptr = array.ptr + offset
# sys.stdout.write('Stack[')
# sys.stdout.write(str(offset))
# sys.stdout.write('] = ')
# sys.stdout.write(array[ptr])
# print()
# offset += 1
part "DUMP_ARRAY"
# Line 1-2
copy
get
less "__DA_RET_1"
copy
get
zero "__DA_RET_1"
# Line 3
push 1
# Line 4
part "__DA_LOOP"
copy
copy 2
get
swap
sub
less "__DA_RET_2"
# Line 5
copy 1
copy 1
add
# Line 6
push 176
call "PRINT"
# Line 7
copy 1
oint
# Line 8
push 183
call "PRINT"
# Line 9
get
oint
# Line 10
push 17
call "PRINT_LINE"
# Line 11
push 1
add
goto "__DA_LOOP"
part "__DA_RET_2"
away
part "__DA_RET_1"
away
back
# def div_array(array):
# last = array[-1]
# if last == 0:
# sys.stdout.write('Error: ')
# sys.stdout.write('DIV')
# sys.stdout.write_line(' is illegal.')
# return
# array.len -= 1
# end_ptr = array.ptr + array.len
# last1 = array[end_ptr + 1]
# last2 = array[end_ptr]
# end, array = last2 / last1, array
# array[array.ptr + array.len] = end
part "DIV_ARRAY"
# Line 1
copy
copy
get
add
get
# Line 2
zero "__DA_ZERO"
goto "__DA_OKAY"
part "__DA_ZERO"
# Line 3-5
push 188
call "PRINT"
push 196
call "PRINT"
push 200
call "PRINT_LINE"
# Line 6
away
back
part "__DA_OKAY"
# Line 7
copy
copy
get
push 1
sub
set
# Line 8
copy
copy
get
add
# Line 9
copy
push 1
add
get
# Line 10
swap
get
# Line 11
swap
div
swap
# Line 12
copy
get
add
swap
set
back
# def mod_array(array):
# last = array[-1]
# if last == 0:
# sys.stdout.write('Error: ')
# sys.stdout.write('MOD')
# sys.stdout.write_line(' is illegal.')
# return
# array.len -= 1
# end_ptr = array.ptr + array.len
# last1 = array[end_ptr + 1]
# last2 = array[end_ptr]
# end, array = last2 % last1, array
# array[array.ptr + array.len] = end
part "MOD_ARRAY"
# Line 1
copy
copy
get
add
get
# Line 2
zero "__MA_ZERO"
goto "__MA_OKAY"
part "__MA_ZERO"
# Line 3-5
push 188
call "PRINT"
push 213
call "PRINT"
push 200
call "PRINT_LINE"
# Line 6
away
back
part "__MA_OKAY"
# Line 7
copy
copy
get
push 1
sub
set
# Line 8
copy
copy
get
add
# Line 9
copy
push 1
add
get
# Line 10
swap
get
# Line 11
swap
mod
swap
# Line 12
copy
get
add
swap
set
back
# def do_action(stack):
# print(MENU)
# key = get_key_press('+-*/%tdq')
# print()
# if key == '+':
# add_array(array)
# elif key == '-':
# sub_array(array)
# elif key == '*':
# mul_array(array)
# elif key == '/':
# div_array(array)
# elif key == '%':
# mod_array(array)
# elif key == 't':
# show_last(array)
# elif key == 'd':
# dump_array(array)
# else:
# sys.exit()
part "DO_ACTION"
push 76
call "PRINT"
push 161
call "GET_KEY_PRESS"
push 17
call "PRINT_LINE"
copy
push 43
sub
zero "__DA_ADD"
copy
push 45
sub
zero "__DA_SUB"
copy
push 42
sub
zero "__DA_MUL"
copy
push 47
sub
zero "__DA_DIV"
copy
push 37
sub
zero "__DA_MOD"
copy
push 116
sub
zero "__DA_TOP"
push 100
sub
zero "__DA_DUMP"
# Here are several function calls.
exit
part "__DA_DUMP"
call "DUMP_ARRAY"
back
part "__DA_TOP"
away
call "SHOW_LAST"
back
part "__DA_MOD"
away
call "MOD_ARRAY"
back
part "__DA_DIV"
away
call "DIV_ARRAY"
back
part "__DA_MUL"
away
call "MUL_ARRAY"
back
part "__DA_SUB"
away
call "SUB_ARRAY"
back
part "__DA_ADD"
away
call "ADD_ARRAY"
back
# def get_input(stack):
# if len(stack) < 2:
# get_number(stack)
# else:
# if get_mode() == 0:
# do_action(stack)
# else:
# get_number(stack)
part "GET_INPUT"
copy
get
push 2
sub
less "__GI_IF_1"
call "GET_MODE"
zero "__GI_IF_2"
part "__GI_IF_1"
call "GET_NUMBER"
back
part "__GI_IF_2"
call "DO_ACTION"
back
# Prints out size of a stack.
# push addr
# call "STACK_SIZE"
part "STACK_SIZE"
push 0
call "PRINT"
get
oint
push 17
call "PRINT_LINE"
back
# Prints a string with newline.
# push addr
# call "PRINT_LINE"
part "PRINT_LINE"
call "PRINT"
push 10
ochr
back
# def print(array):
# if len(array) <= 0:
# return
# offset = 1
# while len(array) - offset >= 0:
# ptr = array.ptr + offset
# putch(array[ptr])
# offset += 1
part "PRINT"
# Line 1-2
copy
get
less "__PRINT_RET_1"
copy
get
zero "__PRINT_RET_1"
# Line 3
push 1
# Line 4
part "__PRINT_LOOP"
copy
copy 2
get
swap
sub
less "__PRINT_RET_2"
# Line 5
copy 1
copy 1
add
# Line 6
get
ochr
# Line 7
push 1
add
goto "__PRINT_LOOP"
part "__PRINT_RET_2"
away
part "__PRINT_RET_1"
away
back
|
Tags: assembly, whitespace
See both recipe 577108 and recipe 577110 to execute.