-
Notifications
You must be signed in to change notification settings - Fork 0
/
addition_16bit.txt
2066 lines (1423 loc) · 57.2 KB
/
addition_16bit.txt
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
# always call this first
visit boot_up
chapter main
prompt Enter+Number+1+in+Binary
visit clear_cx
set cx-0000 set cx-0001 set cx-0010 set cx-0011
visit clear_ax
chapter load_ax
clear jmp_mf
match 1 set jmp_mf visit set_ax@cx
if jmp_mf goto match_fin_a
match 0 visit clear_ax@cx
chapter match_fin_a
visit dec_cx
unless cx-1111 visit load_ax
return load-ax
visit clear_cx
set cx-0000 set cx-0001 set cx-0010 set cx-0011
visit clear_bx
prompt Enter+Number+2+in+Binary
chapter load_bx
clear jmp_mf
match 1 set jmp_mf visit set_bx@cx
if jmp_mf goto match_fin_b
match 0 visit clear_bx@cx
chapter match_fin_b
visit dec_cx
unless cx-1111 visit load_bx
return load_bx
visit ax_sub_bx
>The difference is:
visit print_ax
end program
########################
# The Stack #
########################
# Basically, we need a lot of space reserved, and we need to be able to move around in it.
# We can hopefully achieve this in a nice way using the $ function.
# However, we need to implement push and pop nicely.
# So we will have a 'bp' and 'sp' registers.
#
# We have nice 16-bit registers. So, we can 65,536 bits, which translates to a (still respectable?)
# 8,192 bytes. Yeah, you can do quite bit with that, although
# I worry that that might be pushing the limits when it comes to running really huge programs.
# Memory is mapped from end to end.
# We can do operations on SP based on the value of AX.
chapter push_bx
# where is sp
# we need to decrement it by 8 (so, set the 5th bit of ax = ax-100).
visit sp_mov_cx
visit clear_ax
set ax-100
visit sp_sub_ax
# now, decrement cx until it's equal to sp, adding the chunks in from right to left.
return home
chapter pop_bx
return home
#########################
# Core Functions #
#########################
chapter boot_up
visit clear_ax
visit clear_bx
visit clear_cx
visit clear_bp
#the stack technically starts at the other end of memory, but
#when it is decremented, we'll be able to start using it.
visit clear_sp
return home
chapter print_ax
if ax-1111 print 1
unless ax-1111 print 0
if ax-1110 print 1
unless ax-1110 print 0
if ax-1101 print 1
unless ax-1101 print 0
if ax-1100 print 1
unless ax-1100 print 0
if ax-1011 print 1
unless ax-1011 print 0
if ax-1010 print 1
unless ax-1010 print 0
if ax-1001 print 1
unless ax-1001 print 0
if ax-1000 print 1
unless ax-1000 print 0
if ax-0111 print 1
unless ax-0111 print 0
if ax-0110 print 1
unless ax-0110 print 0
if ax-0101 print 1
unless ax-0101 print 0
if ax-0100 print 1
unless ax-0100 print 0
if ax-0011 print 1
unless ax-0011 print 0
if ax-0010 print 1
unless ax-0010 print 0
if ax-0001 print 1
unless ax-0001 print 0
if ax-0000 print 1
unless ax-0000 print 0
println +
return home
chapter print_bx
if bx-1111 print 1
unless bx-1111 print 0
if bx-1110 print 1
unless bx-1110 print 0
if bx-1101 print 1
unless bx-1101 print 0
if bx-1100 print 1
unless bx-1100 print 0
if bx-1011 print 1
unless bx-1011 print 0
if bx-1010 print 1
unless bx-1010 print 0
if bx-1001 print 1
unless bx-1001 print 0
if bx-1000 print 1
unless bx-1000 print 0
if bx-0111 print 1
unless bx-0111 print 0
if bx-0110 print 1
unless bx-0110 print 0
if bx-0101 print 1
unless bx-0101 print 0
if bx-0100 print 1
unless bx-0100 print 0
if bx-0011 print 1
unless bx-0011 print 0
if bx-0010 print 1
unless bx-0010 print 0
if bx-0001 print 1
unless bx-0001 print 0
if bx-0000 print 1
unless bx-0000 print 0
println +
return home
##### Bit manipulation ########
chapter load_sp@cx
clear sp_bit
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 if sp-0000 set sp_bit return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 if sp-0001 set sp_bit return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 if sp-0010 set sp_bit return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 if sp-0011 set sp_bit return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 if sp-0100 set sp_bit return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 if sp-0101 set sp_bit return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 if sp-0110 set sp_bit return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 if sp-0111 set sp_bit return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 if sp-1000 set sp_bit return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 if sp-1001 set sp_bit return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 if sp-1010 set sp_bit return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 if sp-1011 set sp_bit return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 if sp-1100 set sp_bit return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 if sp-1101 set sp_bit return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 if sp-1110 set sp_bit return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 if sp-1111 set sp_bit return home
return home
chapter load_ax@cx
clear ax_bit
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 if ax-0000 set ax_bit return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 if ax-0001 set ax_bit return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 if ax-0010 set ax_bit return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 if ax-0011 set ax_bit return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 if ax-0100 set ax_bit return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 if ax-0101 set ax_bit return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 if ax-0110 set ax_bit return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 if ax-0111 set ax_bit return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 if ax-1000 set ax_bit return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 if ax-1001 set ax_bit return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 if ax-1010 set ax_bit return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 if ax-1011 set ax_bit return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 if ax-1100 set ax_bit return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 if ax-1101 set ax_bit return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 if ax-1110 set ax_bit return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 if ax-1111 set ax_bit return home
return home
chapter load_bx@cx
clear bx_bit
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 if bx-0000 set bx_bit return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 if bx-0001 set bx_bit return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 if bx-0010 set bx_bit return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 if bx-0011 set bx_bit return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 if bx-0100 set bx_bit return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 if bx-0101 set bx_bit return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 if bx-0110 set bx_bit return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 if bx-0111 set bx_bit return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 if bx-1000 set bx_bit return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 if bx-1001 set bx_bit return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 if bx-1010 set bx_bit return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 if bx-1011 set bx_bit return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 if bx-1100 set bx_bit return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 if bx-1101 set bx_bit return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 if bx-1110 set bx_bit return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 if bx-1111 set bx_bit return home
return home
chapter set_sp@cx
#only last 4 digits of cx considered.
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 set sp-0000 return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 set sp-0001 return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 set sp-0010 return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 set sp-0011 return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 set sp-0100 return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 set sp-0101 return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 set sp-0110 return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 set sp-0111 return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 set sp-1000 return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 set sp-1001 return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 set sp-1010 return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 set sp-1011 return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 set sp-1100 return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 set sp-1101 return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 set sp-1110 return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 set sp-1111 return home
return home
chapter set_ax@cx
#only last 4 digits of cx considered.
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 set ax-0000 return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 set ax-0001 return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 set ax-0010 return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 set ax-0011 return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 set ax-0100 return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 set ax-0101 return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 set ax-0110 return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 set ax-0111 return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 set ax-1000 return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 set ax-1001 return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 set ax-1010 return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 set ax-1011 return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 set ax-1100 return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 set ax-1101 return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 set ax-1110 return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 set ax-1111 return home
return home
chapter clear_sp@cx
#only last 4 digits of cx considered.
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 clear sp-0000 return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 clear sp-0001 return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 clear sp-0010 return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 clear sp-0011 return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 clear sp-0100 return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 clear sp-0101 return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 clear sp-0110 return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 clear sp-0111 return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 clear sp-1000 return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 clear sp-1001 return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 clear sp-1010 return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 clear sp-1011 return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 clear sp-1100 return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 clear sp-1101 return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 clear sp-1110 return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 clear sp-1111 return home
return home
chapter clear_ax@cx
#only last 4 digits of cx considered.
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 clear ax-0000 return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 clear ax-0001 return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 clear ax-0010 return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 clear ax-0011 return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 clear ax-0100 return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 clear ax-0101 return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 clear ax-0110 return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 clear ax-0111 return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 clear ax-1000 return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 clear ax-1001 return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 clear ax-1010 return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 clear ax-1011 return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 clear ax-1100 return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 clear ax-1101 return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 clear ax-1110 return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 clear ax-1111 return home
return home
chapter set_bx@cx
#only last 4 digits of cx considered.
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 set bx-0000 return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 set bx-0001 return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 set bx-0010 return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 set bx-0011 return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 set bx-0100 return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 set bx-0101 return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 set bx-0110 return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 set bx-0111 return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 set bx-1000 return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 set bx-1001 return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 set bx-1010 return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 set bx-1011 return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 set bx-1100 return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 set bx-1101 return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 set bx-1110 return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 set bx-1111 return home
return home
chapter clear_bx@cx
#only last 4 digits of cx considered.
unless cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 clear bx-0000 return home
if cx-0000 unless cx-0001 unless cx-0010 unless cx-0011 clear bx-0001 return home
unless cx-0000 if cx-0001 unless cx-0010 unless cx-0011 clear bx-0010 return home
if cx-0000 if cx-0001 unless cx-0010 unless cx-0011 clear bx-0011 return home
unless cx-0000 unless cx-0001 if cx-0010 unless cx-0011 clear bx-0100 return home
if cx-0000 unless cx-0001 if cx-0010 unless cx-0011 clear bx-0101 return home
unless cx-0000 if cx-0001 if cx-0010 unless cx-0011 clear bx-0110 return home
if cx-0000 if cx-0001 if cx-0010 unless cx-0011 clear bx-0111 return home
unless cx-0000 unless cx-0001 unless cx-0010 if cx-0011 clear bx-1000 return home
if cx-0000 unless cx-0001 unless cx-0010 if cx-0011 clear bx-1001 return home
unless cx-0000 if cx-0001 unless cx-0010 if cx-0011 clear bx-1010 return home
if cx-0000 if cx-0001 unless cx-0010 if cx-0011 clear bx-1011 return home
unless cx-0000 unless cx-0001 if cx-0010 if cx-0011 clear bx-1100 return home
if cx-0000 unless cx-0001 if cx-0010 if cx-0011 clear bx-1101 return home
unless cx-0000 if cx-0001 if cx-0010 if cx-0011 clear bx-1110 return home
if cx-0000 if cx-0001 if cx-0010 if cx-0011 clear bx-1111 return home
return home
chapter clear_ax
clear ax-0000 clear ax-0001 clear ax-0010 clear ax-0011 clear ax-0100 clear ax-0101 clear ax-0110 clear ax-0111
clear ax-1000 clear ax-1001 clear ax-1010 clear ax-1011 clear ax-1100 clear ax-1101 clear ax-1110 clear ax-1111
return home
chapter set_ax
set ax-0000 set ax-0001 set ax-0010 set ax-0011 set ax-0100 set ax-0101 set ax-0110 set ax-0111
set ax-1000 set ax-1001 set ax-1010 set ax-1011 set ax-1100 set ax-1101 set ax-1110 set ax-1111
return home
chapter clear_bx
clear bx-0000 clear bx-0001 clear bx-0010 clear bx-0011 clear bx-0100 clear bx-0101 clear bx-0110 clear bx-0111
clear bx-1000 clear bx-1001 clear bx-1010 clear bx-1011 clear bx-1100 clear bx-1101 clear bx-1110 clear bx-1111
return home
chapter set_bx
set bx-0000 set bx-0001 set bx-0010 set bx-0011 set bx-0100 set bx-0101 set bx-0110 set bx-0111
set bx-1000 set bx-1001 set bx-1010 set bx-1011 set bx-1100 set bx-1101 set bx-1110 set bx-1111
return home
chapter clear_cx
clear cx-0000 clear cx-0001 clear cx-0010 clear cx-0011 clear cx-0100 clear cx-0101 clear cx-0110 clear cx-0111
clear cx-1000 clear cx-1001 clear cx-1010 clear cx-1011 clear cx-1100 clear cx-1101 clear cx-1110 clear cx-1111
return home
chapter set_cx
set cx-0000 set cx-0001 set cx-0010 set cx-0011 set cx-0100 set cx-0101 set cx-0110 set cx-0111
set cx-1000 set cx-1001 set cx-1010 set cx-1011 set cx-1100 set cx-1101 set cx-1110 set cx-1111
return home
chapter clear_sp
clear sp-0000 clear sp-0001 clear sp-0010 clear sp-0011 clear sp-0100 clear sp-0101 clear sp-0110 clear sp-0111
clear sp-1000 clear sp-1001 clear sp-1010 clear sp-1011 clear sp-1100 clear sp-1101 clear sp-1110 clear sp-1111
return home
chapter set_sp
set sp-0000 set sp-0001 set sp-0010 set sp-0011 set sp-0100 set sp-0101 set sp-0110 set sp-0111
set sp-1000 set sp-1001 set sp-1010 set sp-1011 set sp-1100 set sp-1101 set sp-1110 set sp-1111
return home
chapter clear_bp
clear bp-0000 clear bp-0001 clear bp-0010 clear bp-0011 clear bp-0100 clear bp-0101 clear bp-0110 clear bp-0111
clear bp-1000 clear bp-1001 clear bp-1010 clear bp-1011 clear bp-1100 clear bp-1101 clear bp-1110 clear bp-1111
return home
chapter set_bp
set bp-0000 set bp-0001 set bp-0010 set bp-0011 set bp-0100 set bp-0101 set bp-0110 set bp-0111
set bp-1000 set bp-1001 set bp-1010 set bp-1011 set bp-1100 set bp-1101 set bp-1110 set bp-1111
return home
chapter inc_ax
clear overflow_flag
unless ax-0000 set ax-0000 return home
unless ax-0001 set ax-0001 clear ax-0000 return home
unless ax-0010 set ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-0011 set ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-0100 set ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-0101 set ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-0110 set ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-0111 set ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1000 set ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1001 set ax-1001 clear ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1010 set ax-1010 clear ax-1001 clear ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1011 set ax-1011 clear ax-1010 clear ax-1001 clear ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1100 set ax-1100 clear ax-1011 clear ax-1010 clear ax-1001 clear ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1101 set ax-1101 clear ax-1100 clear ax-1011 clear ax-1010 clear ax-1001 clear ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1110 set ax-1110 clear ax-1101 clear ax-1100 clear ax-1011 clear ax-1010 clear ax-1001 clear ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
unless ax-1111 set ax-1111 clear ax-1110 clear ax-1101 clear ax-1100 clear ax-1011 clear ax-1010 clear ax-1001 clear ax-1000 clear ax-0111 clear ax-0110 clear ax-0101 clear ax-0100 clear ax-0011 clear ax-0010 clear ax-0001 clear ax-0000 return home
set overflow_flag
visit clear_ax
return home
chapter dec_ax
clear overflow_flag
if ax-0000 clear ax-0000 return home
if ax-0001 clear ax-0001 set ax-0000 return home
if ax-0010 clear ax-0010 set ax-0001 set ax-0000 return home
if ax-0011 clear ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-0100 clear ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-0101 clear ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-0110 clear ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-0111 clear ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1000 clear ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1001 clear ax-1001 set ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1010 clear ax-1010 set ax-1001 set ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1011 clear ax-1011 set ax-1010 set ax-1001 set ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1100 clear ax-1100 set ax-1011 set ax-1010 set ax-1001 set ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1101 clear ax-1101 set ax-1100 set ax-1011 set ax-1010 set ax-1001 set ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1110 clear ax-1110 set ax-1101 set ax-1100 set ax-1011 set ax-1010 set ax-1001 set ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
if ax-1111 clear ax-1111 set ax-1110 set ax-1101 set ax-1100 set ax-1011 set ax-1010 set ax-1001 set ax-1000 set ax-0111 set ax-0110 set ax-0101 set ax-0100 set ax-0011 set ax-0010 set ax-0001 set ax-0000 return home
set overflow_flag
visit set_ax
return home
chapter inc_bx
clear overflow_flag
unless bx-0000 set bx-0000 return home
unless bx-0001 set bx-0001 clear bx-0000 return home
unless bx-0010 set bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-0011 set bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-0100 set bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-0101 set bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-0110 set bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-0111 set bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1000 set bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1001 set bx-1001 clear bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1010 set bx-1010 clear bx-1001 clear bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1011 set bx-1011 clear bx-1010 clear bx-1001 clear bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1100 set bx-1100 clear bx-1011 clear bx-1010 clear bx-1001 clear bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1101 set bx-1101 clear bx-1100 clear bx-1011 clear bx-1010 clear bx-1001 clear bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1110 set bx-1110 clear bx-1101 clear bx-1100 clear bx-1011 clear bx-1010 clear bx-1001 clear bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
unless bx-1111 set bx-1111 clear bx-1110 clear bx-1101 clear bx-1100 clear bx-1011 clear bx-1010 clear bx-1001 clear bx-1000 clear bx-0111 clear bx-0110 clear bx-0101 clear bx-0100 clear bx-0011 clear bx-0010 clear bx-0001 clear bx-0000 return home
set overflow_flag
visit clear_bx
return home
chapter dec_bx
clear overflow_flag
if bx-0000 clear bx-0000 return home
if bx-0001 clear bx-0001 set bx-0000 return home
if bx-0010 clear bx-0010 set bx-0001 set bx-0000 return home
if bx-0011 clear bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-0100 clear bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-0101 clear bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-0110 clear bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-0111 clear bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1000 clear bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1001 clear bx-1001 set bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1010 clear bx-1010 set bx-1001 set bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1011 clear bx-1011 set bx-1010 set bx-1001 set bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1100 clear bx-1100 set bx-1011 set bx-1010 set bx-1001 set bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1101 clear bx-1101 set bx-1100 set bx-1011 set bx-1010 set bx-1001 set bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1110 clear bx-1110 set bx-1101 set bx-1100 set bx-1011 set bx-1010 set bx-1001 set bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
if bx-1111 clear bx-1111 set bx-1110 set bx-1101 set bx-1100 set bx-1011 set bx-1010 set bx-1001 set bx-1000 set bx-0111 set bx-0110 set bx-0101 set bx-0100 set bx-0011 set bx-0010 set bx-0001 set bx-0000 return home
set overflow_flag
visit set_bx
return home
chapter inc_cx
clear overflow_flag
unless cx-0000 set cx-0000 return home
unless cx-0001 set cx-0001 clear cx-0000 return home
unless cx-0010 set cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-0011 set cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-0100 set cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-0101 set cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-0110 set cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-0111 set cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1000 set cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1001 set cx-1001 clear cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1010 set cx-1010 clear cx-1001 clear cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1011 set cx-1011 clear cx-1010 clear cx-1001 clear cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1100 set cx-1100 clear cx-1011 clear cx-1010 clear cx-1001 clear cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1101 set cx-1101 clear cx-1100 clear cx-1011 clear cx-1010 clear cx-1001 clear cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1110 set cx-1110 clear cx-1101 clear cx-1100 clear cx-1011 clear cx-1010 clear cx-1001 clear cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
unless cx-1111 set cx-1111 clear cx-1110 clear cx-1101 clear cx-1100 clear cx-1011 clear cx-1010 clear cx-1001 clear cx-1000 clear cx-0111 clear cx-0110 clear cx-0101 clear cx-0100 clear cx-0011 clear cx-0010 clear cx-0001 clear cx-0000 return home
set overflow_flag
visit clear_cx
return home
chapter dec_cx
clear overflow_flag
if cx-0000 clear cx-0000 return home
if cx-0001 clear cx-0001 set cx-0000 return home
if cx-0010 clear cx-0010 set cx-0001 set cx-0000 return home
if cx-0011 clear cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-0100 clear cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-0101 clear cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-0110 clear cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-0111 clear cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1000 clear cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1001 clear cx-1001 set cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1010 clear cx-1010 set cx-1001 set cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1011 clear cx-1011 set cx-1010 set cx-1001 set cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1100 clear cx-1100 set cx-1011 set cx-1010 set cx-1001 set cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1101 clear cx-1101 set cx-1100 set cx-1011 set cx-1010 set cx-1001 set cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1110 clear cx-1110 set cx-1101 set cx-1100 set cx-1011 set cx-1010 set cx-1001 set cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
if cx-1111 clear cx-1111 set cx-1110 set cx-1101 set cx-1100 set cx-1011 set cx-1010 set cx-1001 set cx-1000 set cx-0111 set cx-0110 set cx-0101 set cx-0100 set cx-0011 set cx-0010 set cx-0001 set cx-0000 return home
set overflow_flag
visit set_cx
return home
#### Copying #######
chapter sp_mov_cx
visit clear_cx
if sp-0000 set cx-0000
if sp-0001 set cx-0001
if sp-0010 set cx-0010
if sp-0011 set cx-0011
if sp-0100 set cx-0100
if sp-0101 set cx-0101
if sp-0110 set cx-0110
if sp-0111 set cx-0111
if sp-1000 set cx-1000
if sp-1001 set cx-1001
if sp-1010 set cx-1010
if sp-1011 set cx-1011
if sp-1100 set cx-1100
if sp-1101 set cx-1101
if sp-1110 set cx-1110
if sp-1111 set cx-1111
return home
chapter sp_mov_ax
visit clear_ax
if sp-0000 set ax-0000
if sp-0001 set ax-0001
if sp-0010 set ax-0010
if sp-0011 set ax-0011
if sp-0100 set ax-0100
if sp-0101 set ax-0101
if sp-0110 set ax-0110
if sp-0111 set ax-0111
if sp-1000 set ax-1000
if sp-1001 set ax-1001
if sp-1010 set ax-1010
if sp-1011 set ax-1011
if sp-1100 set ax-1100
if sp-1101 set ax-1101
if sp-1110 set ax-1110
if sp-1111 set ax-1111
return home
chapter sp_mov_bx
visit clear_bx
if sp-0000 set bx-0000
if sp-0001 set bx-0001
if sp-0010 set bx-0010
if sp-0011 set bx-0011
if sp-0100 set bx-0100
if sp-0101 set bx-0101
if sp-0110 set bx-0110
if sp-0111 set bx-0111
if sp-1000 set bx-1000
if sp-1001 set bx-1001
if sp-1010 set bx-1010
if sp-1011 set bx-1011
if sp-1100 set bx-1100
if sp-1101 set bx-1101
if sp-1110 set bx-1110
if sp-1111 set bx-1111
return home
chapter sp_mov_bp
visit clear_bp
if sp-0000 set bp-0000
if sp-0001 set bp-0001
if sp-0010 set bp-0010
if sp-0011 set bp-0011
if sp-0100 set bp-0100
if sp-0101 set bp-0101
if sp-0110 set bp-0110
if sp-0111 set bp-0111
if sp-1000 set bp-1000
if sp-1001 set bp-1001
if sp-1010 set bp-1010
if sp-1011 set bp-1011
if sp-1100 set bp-1100
if sp-1101 set bp-1101
if sp-1110 set bp-1110
if sp-1111 set bp-1111
return home
#
chapter ax_mov_cx
visit clear_cx
if ax-0000 set cx-0000
if ax-0001 set cx-0001
if ax-0010 set cx-0010
if ax-0011 set cx-0011
if ax-0100 set cx-0100
if ax-0101 set cx-0101
if ax-0110 set cx-0110
if ax-0111 set cx-0111
if ax-1000 set cx-1000
if ax-1001 set cx-1001
if ax-1010 set cx-1010
if ax-1011 set cx-1011
if ax-1100 set cx-1100
if ax-1101 set cx-1101
if ax-1110 set cx-1110
if ax-1111 set cx-1111
return home
chapter ax_mov_sp
visit clear_sp
if ax-0000 set sp-0000
if ax-0001 set sp-0001
if ax-0010 set sp-0010
if ax-0011 set sp-0011
if ax-0100 set sp-0100
if ax-0101 set sp-0101
if ax-0110 set sp-0110
if ax-0111 set sp-0111
if ax-1000 set sp-1000
if ax-1001 set sp-1001
if ax-1010 set sp-1010
if ax-1011 set sp-1011
if ax-1100 set sp-1100
if ax-1101 set sp-1101
if ax-1110 set sp-1110
if ax-1111 set sp-1111
return home
chapter ax_mov_bx
visit clear_bx
if ax-0000 set bx-0000
if ax-0001 set bx-0001
if ax-0010 set bx-0010
if ax-0011 set bx-0011
if ax-0100 set bx-0100
if ax-0101 set bx-0101
if ax-0110 set bx-0110
if ax-0111 set bx-0111
if ax-1000 set bx-1000
if ax-1001 set bx-1001
if ax-1010 set bx-1010
if ax-1011 set bx-1011
if ax-1100 set bx-1100
if ax-1101 set bx-1101
if ax-1110 set bx-1110
if ax-1111 set bx-1111
return home
chapter ax_mov_bp
visit clear_bp
if ax-0000 set bp-0000
if ax-0001 set bp-0001
if ax-0010 set bp-0010
if ax-0011 set bp-0011
if ax-0100 set bp-0100
if ax-0101 set bp-0101
if ax-0110 set bp-0110
if ax-0111 set bp-0111
if ax-1000 set bp-1000
if ax-1001 set bp-1001
if ax-1010 set bp-1010
if ax-1011 set bp-1011
if ax-1100 set bp-1100
if ax-1101 set bp-1101
if ax-1110 set bp-1110
if ax-1111 set bp-1111
return home
#
chapter bx_mov_cx
visit clear_cx
if bx-0000 set cx-0000
if bx-0001 set cx-0001
if bx-0010 set cx-0010
if bx-0011 set cx-0011
if bx-0100 set cx-0100
if bx-0101 set cx-0101
if bx-0110 set cx-0110
if bx-0111 set cx-0111
if bx-1000 set cx-1000
if bx-1001 set cx-1001
if bx-1010 set cx-1010
if bx-1011 set cx-1011
if bx-1100 set cx-1100
if bx-1101 set cx-1101
if bx-1110 set cx-1110
if bx-1111 set cx-1111
return home
chapter bx_mov_sp
visit clear_sp
if bx-0000 set sp-0000
if bx-0001 set sp-0001
if bx-0010 set sp-0010
if bx-0011 set sp-0011
if bx-0100 set sp-0100
if bx-0101 set sp-0101
if bx-0110 set sp-0110
if bx-0111 set sp-0111
if bx-1000 set sp-1000
if bx-1001 set sp-1001
if bx-1010 set sp-1010
if bx-1011 set sp-1011
if bx-1100 set sp-1100
if bx-1101 set sp-1101
if bx-1110 set sp-1110
if bx-1111 set sp-1111
return home
chapter bx_mov_ax
visit clear_ax
if bx-0000 set ax-0000
if bx-0001 set ax-0001
if bx-0010 set ax-0010
if bx-0011 set ax-0011
if bx-0100 set ax-0100
if bx-0101 set ax-0101
if bx-0110 set ax-0110
if bx-0111 set ax-0111
if bx-1000 set ax-1000
if bx-1001 set ax-1001
if bx-1010 set ax-1010
if bx-1011 set ax-1011
if bx-1100 set ax-1100
if bx-1101 set ax-1101
if bx-1110 set ax-1110
if bx-1111 set ax-1111
return home
chapter bx_mov_bp
visit clear_bp
if bx-0000 set bp-0000
if bx-0001 set bp-0001
if bx-0010 set bp-0010
if bx-0011 set bp-0011
if bx-0100 set bp-0100
if bx-0101 set bp-0101
if bx-0110 set bp-0110
if bx-0111 set bp-0111
if bx-1000 set bp-1000
if bx-1001 set bp-1001
if bx-1010 set bp-1010
if bx-1011 set bp-1011
if bx-1100 set bp-1100
if bx-1101 set bp-1101
if bx-1110 set bp-1110
if bx-1111 set bp-1111
return home
#
chapter cx_mov_bx
visit clear_bx
if cx-0000 set bx-0000
if cx-0001 set bx-0001
if cx-0010 set bx-0010
if cx-0011 set bx-0011
if cx-0100 set bx-0100
if cx-0101 set bx-0101
if cx-0110 set bx-0110
if cx-0111 set bx-0111
if cx-1000 set bx-1000
if cx-1001 set bx-1001
if cx-1010 set bx-1010
if cx-1011 set bx-1011
if cx-1100 set bx-1100
if cx-1101 set bx-1101
if cx-1110 set bx-1110
if cx-1111 set bx-1111
return home
chapter cx_mov_sp
visit clear_sp
if cx-0000 set sp-0000
if cx-0001 set sp-0001
if cx-0010 set sp-0010
if cx-0011 set sp-0011
if cx-0100 set sp-0100
if cx-0101 set sp-0101
if cx-0110 set sp-0110
if cx-0111 set sp-0111
if cx-1000 set sp-1000
if cx-1001 set sp-1001
if cx-1010 set sp-1010
if cx-1011 set sp-1011
if cx-1100 set sp-1100
if cx-1101 set sp-1101
if cx-1110 set sp-1110
if cx-1111 set sp-1111
return home
chapter cx_mov_ax
visit clear_ax
if cx-0000 set ax-0000
if cx-0001 set ax-0001
if cx-0010 set ax-0010
if cx-0011 set ax-0011
if cx-0100 set ax-0100
if cx-0101 set ax-0101
if cx-0110 set ax-0110
if cx-0111 set ax-0111
if cx-1000 set ax-1000
if cx-1001 set ax-1001
if cx-1010 set ax-1010
if cx-1011 set ax-1011
if cx-1100 set ax-1100
if cx-1101 set ax-1101
if cx-1110 set ax-1110
if cx-1111 set ax-1111
return home
chapter cx_mov_bp
visit clear_bp
if cx-0000 set bp-0000
if cx-0001 set bp-0001
if cx-0010 set bp-0010
if cx-0011 set bp-0011
if cx-0100 set bp-0100
if cx-0101 set bp-0101
if cx-0110 set bp-0110
if cx-0111 set bp-0111
if cx-1000 set bp-1000
if cx-1001 set bp-1001
if cx-1010 set bp-1010
if cx-1011 set bp-1011
if cx-1100 set bp-1100
if cx-1101 set bp-1101
if cx-1110 set bp-1110
if cx-1111 set bp-1111
return home
#
chapter bp_mov_bx
visit clear_bx
if bp-0000 set bx-0000
if bp-0001 set bx-0001
if bp-0010 set bx-0010
if bp-0011 set bx-0011
if bp-0100 set bx-0100
if bp-0101 set bx-0101
if bp-0110 set bx-0110
if bp-0111 set bx-0111