-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathm6.asm
2126 lines (2094 loc) · 52.8 KB
/
m6.asm
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
; n.b. This file was originally m6502.c by Aztec C v1.06.
; Then it had many hand-edit optimizations (mostly deletes).
; It can't be recreated with a compiler without losing edits.
; Uncomment debugging lines to get instruction tracing printed to stdout.
; Optimized for 8080 over Z80 when there is a choice.
;
; struct MOS_6502
; {
; uint8_t a, x, y, sp;
; uint16_t pc;
; uint8_t pf; /* NV-BDIZC. State is tracked in bools below and only updated for pf and php */
; bool fNegative, fOverflow, fDecimal, fInterruptDisable, fZero, fCarry;
; };
;/*
; 6502 emulator targeted at an 8080 running CP/M 2.2.
; Written by David Lee
;*/
;struct MOS_6502 cpu;
global cpu_,13
.cpu.a equ cpu_ + 0
.cpu.x equ cpu_ + 1
.cpu.y equ cpu_ + 2
.cpu.sp equ cpu_ + 3
.cpu.pc equ cpu_ + 4
.cpu.pf equ cpu_ + 6
.cpu.fNegative equ cpu_ + 7 ; for all flags: false if 0 and true if at least bit 0 is set
.cpu.fOverflow equ cpu_ + 8
.cpu.fDecimal equ cpu_ + 9
.cpu.fInterruptDisable equ cpu_ + 10
.cpu.fZero equ cpu_ + 11
.cpu.fCarry equ cpu_ + 12
;static uint8_t g_State = 0;
DSEG
g_State_:
DB 0
CSEG
;#define stateEndEmulation 2
;#define stateSoftReset 4
;
;void end_emulation() { g_State |= stateEndEmulation; }
PUBLIC end_emul_
end_emul_:
lda g_State_
ori 2
sta g_State_
ret
;void soft_reset() { g_State |= stateSoftReset; }
PUBLIC soft_res_
soft_res_:
lda g_State_
ori 4
sta g_State_
ret
; put all locals in bss and prior to m_0000 so m_0000 ends up highest in RAM
DSEG
bss .bcdalo, 1
bss .bcdahi, 1
bss .bcdrlo, 1
bss .bcdrhi, 1
bss .bcdad, 1
bss .bcdrd, 1
bss .bcdresult, 1
bss .om_result, 1
bss .ac_flags_, 7
; make m_0000 as large as fits on your CP/M machine.
; 4096 * 9 works in ntvcm (but not some other emulators)
; 4096 * 5 works in the altair cp/m emulator
; 4096 * 1 is a base 4k Apple 1, which works well!
ram_size equ 4096 * 8
ram_page_beyond equ ram_size / 256
;static uint8_t m_0000[ ram_size ];
bss m_0000_, ram_size
;void bad_address( address ) uint16_t address;
bad_addr_:
;{
; printf( "the apple 1 app referenced the invalid address %04x\n", address );
lxi h, 2
dad sp
mov e, m
inx h
mov d, m
push d
lxi h, .bad_addr_err
push h
call m_hard_e_ ; no coming back from this
; in C:
; uint8_t * get_mem( address ) uint16_t address;
; {
; uint8_t * base;
; base = mem_base[ address >> 12 ];
; if ( 0 == base )
; bad_address( address );
; return base + address;
; }
; this version has address on the stack and is called from a1.c to load programs
PUBLIC get_mem_
get_mem_:
lxi h, 2
dad sp
mov a, m
inx h
mov h, m
mov l, a ; hl now has address
; n.b.: fall through to get_hmem
; this version has address in HL and is called from this file
get_hmem_: ; doesn't modify b, c
mov a, h
cpi ram_page_beyond
jp .gmt_basic ; is it in m_0000_ RAM?
lxi d, m_0000_
dad d
ret
.gmt_basic:
cpi 0e0h
jm .gmt_io
cpi 0f0h
jp .gmt_monitor ; is it in woz basic?
lxi d, m_e000_ - 0e000h
dad d
ret
.gmt_monitor:
cpi 0ffh
jnz .gmt_bad ; is it in the woz monitor?
lxi d, m_ff00_ - 0ff00h
dad d
ret
.gmt_io:
cpi 0d0h
jnz .gmt_bad ; is it memory mapped io? (kbd/video)
mov a, l
cpi 14h ; d010 through d013 are hardware
jp .gmt_bad
lxi d, m_d000_ - 0d000h
dad d
ret
.gmt_bad:
push h
call bad_address_
; in C:
; void set_nz( x ) uint8_t x;
; {
; cpu.fNegative = !! ( x & 0x80 );
; cpu.fZero = !x;
; }
; except that x is passed in the a register, not on the stack
aset_nz_: ; doesn't modify b, c, d, e, h, l
cpi 0
jnz _anz_set
sta .cpu.fNegative ; set negative flag to false
inr a
sta .cpu.fZero ; set zero flag to true
ret
_anz_set:
mvi a, 0 ; can't xra because that'd set flags
sta .cpu.fZero ; set zero flag to false
jp _anz_pos
inr a
_anz_pos:
sta .cpu.fNegative ; set negative flag
ret
;void power_on()
;{
PUBLIC power_on_
power_on_:
; cpu.pc = get_word( 0xfffc );
lxi h, 0fffch
call get_hmem_
mov e, m
inx h
mov h, m
mov l, e
shld .cpu.pc
; cpu.fInterruptDisable = true;
mvi a, 1
sta .cpu.fInterruptDisable
;}
ret
;uint8_t op_brotate( op, val ) uint8_t op; uint8_t val;
; op is in c and val is in b. return value is in a
op_brotate: ; doesn't modify c, h, l
;{
;
; rotate = op >> 5;
mov a, c
ani 0e0h ; save the top 3 bits
; if ( 0 == rotate ) /* asl */
; {
jnz .rot_rol
; cpu.fCarry = !! ( 0x80 & val );
mvi a, 80h
ana b
jz .r0_a
mvi a, 1
.r0_a
sta .cpu.fCarry
; val <<= 1;
mov a, b
ral
ani 0feh
jmp .rot_end
; }
; else if ( 1 == rotate ) /* rol */
.rot_rol
; {
cpi 20h ; 1 in the top 3 bits
jnz .rot_lsr
; oldCarry = cpu.fCarry;
lda .cpu.fCarry
mov e, a
; cpu.fCarry = !! ( 0x80 & val );
mvi a, 80h
ana b
mvi a, 0 ; can't use xra; just preserve flags
jz .r1_a
mvi a, 1
.r1_a
sta .cpu.fCarry
; val <<= 1;
mov a, b
ral
; if ( oldCarry )
; val |= 1;
mov b, a
mov a, e
ora a
mov a, b
jnz .r1_zero
ani 0feh
jmp .rot_end
.r1_zero:
ori 1
jmp .rot_end
; }
; else if ( 2 == rotate ) /* lsr */
.rot_lsr
; {
cpi 40h
jnz .rot_ror
; cpu.fCarry = ( val & 1 );
mvi a, 1
ana b
sta .cpu.fCarry
; val >>= 1;
mov a, b
rar
ani 7fh
jmp .rot_end
; }
; else /* ror */
.rot_ror:
; {
; oldCarry = cpu.fCarry;
lda .cpu.fCarry
mov e, a
; cpu.fCarry = ( val & 1 );
mvi a, 1 ; 7 + 4 cycles instead of mov a, b, ani 1 5 + 7
ana b
sta .cpu.fCarry
; val >>= 1;
mov a, b
rar
; if ( oldCarry )
; val |= 0x80;
mov b, a
mov a, e
ora a
mov a, b
jz .r4_zero
ori 80h
jmp .rot_end
.r4_zero:
ani 7fh
; }
.rot_end:
; set_nz( val );
mov b, a ; save the result
call fset_nz_ ; set nz based on current flags
; return val;
mov a, b
ret
;}
;void op_bcmp( lhs, rhs ) uint8_t lhs; uint8_t rhs;
; lhs is in a, rhs is in b (not on the stack)
op_bcmp_: ; doesn't modify b, c, d, e, h, l
;{
; uint8_t result;
; result = (uint8_t) ( (uint16_t) lhs - (uint16_t) rhs );
; cpu.fCarry = ( lhs >= rhs );
cmp b ; carry cleared on borrow
mvi a, 0 ; mvi 0 not xra a to preserve carry flag
jc .bcmp_c
mvi a, 1 ; can't use inr a because that'd modify flags
.bcmp_c:
sta .cpu.fCarry
; n.b.: fall through to fset_nz_
fset_nz_: ; set 6502 NZ flags based on 8080 NZ flags. part of op_bcmp and a function entrypoint
jnz .bcmp_nz
xra a
sta .cpu.fNegative ; set negative flag to false
inr a
sta .cpu.fZero ; set zero flag to true
ret
.bcmp_nz:
mvi a, 0 ; mvi not xra to preserve flags
sta .cpu.fZero ; set zero flag to false
jp .bcmp_pos
inr a
.bcmp_pos:
sta .cpu.fNegative ; set negative flag
ret
;void op_bit( val ) uint8_t val;
; the val argument is in the a register.
op_bit_: ; doesn't modify b, c, d, h, l
;{
; cpu.fNegative = !! ( val & 0x80 );
mov e, a
ani 80h
jz .26
inr a ; high bit will be set, but that's OK
.26:
sta .cpu.fNegative
; cpu.fOverflow = !! ( val & 0x40 );
mov a, e
ani 40h
jz .28
inr a ; high bit will be set, but that's ok
.28:
sta .cpu.fOverflow
; cpu.fZero = ! ( cpu.a & val );
lda .cpu.a
ana e
jz .ob_z
xra a
sta .cpu.fZero
ret
.ob_z:
inr a
sta .cpu.fZero
ret
;void op_bcd_math( math, rhs ) uint8_t math; uint8_t rhs;
op_bcd_m_:
;{
; uint8_t alo, ahi, rlo, rhi, ad, rd, result;
; alo = cpu.a & 0xf;
; ahi = cpu.a >> 4;
; rlo = rhs & 0xf;
; rhi = rhs >> 4;
; if ( alo > 9 || ahi > 9 || rlo > 9 || rhi > 9 )
; return;
lda .cpu.a
ani 0fh
cpi 10
rp
sta .bcdalo
; ahi = cpu.a >> 4;
lda .cpu.a
rrc
rrc
rrc
rrc
ani 0fh
cpi 10
rp
sta .bcdahi
; rlo = rhs & 0xf;
lxi h, 4
dad sp
mov a, m
mov e, a
ani 0fh
cpi 10
rp
sta .bcdrlo
; rhi = rhs >> 4;
mov a, e
rrc
rrc
rrc
rrc
ani 0fh
cpi 10
rp
sta .bcdrhi
; cpu.fZero = false;
xra a
sta .cpu.fZero
; ad = ahi * 10 + alo;
.39:
lda .bcdahi
mov l, a
mvi h, 0
lxi d, 10
call .ml
lda .bcdalo
mov e, a
mvi d, 0
dad d
mov a,l
sta .bcdad
; rd = rhi * 10 + rlo;
lda .bcdrhi
mov l,a
mvi h,0
lxi d,10
call .ml
lda .bcdrlo
mov e, a
mvi d, 0
dad d
mov a,l
sta .bcdrd
; if ( 7 == math )
; {
lxi h, 2
dad sp
mov a, m
cpi 0e0h ; 7
jne .41
; if ( !cpu.fCarry )
; rd += 1;
lda .cpu.fCarry
ora a
jnz .42
lda .bcdrd
inr a
sta .bcdrd
; if ( ad >= rd )
.42:
; {
lda .bcdrd
mov l, a
lda .bcdad
sub l
jm .43
; result = ad - rd;
sta .bcdresult
; cpu.fCarry = true;
mvi a, 1
jmp .44
; }
; else
.43:
; {
; result = 100 + ad - rd;
lda .bcdad
adi 100
sub l
sta .bcdresult
; cpu.fCarry = false;
xra a
; }
.44:
sta .cpu.fCarry
jmp .45
; }
; else
.41:
; {
; result = ad + rd + cpu.fCarry;
lda .cpu.fCarry
mov e, a
lda .bcdrd
mov d, a
lda .bcdad
add e
add d
sta .bcdresult
; if ( result > 99 )
; {
cpi 100
jm .46
; result -= 100;
sbi 100
sta .bcdresult
; cpu.fCarry = true;
mvi a, 1
jmp .47
; }
; else
.46:
; cpu.fCarry = false;
xra a
.47:
sta .cpu.fCarry
; }
.45:
; cpu.a = ( ( result / 10 ) << 4 ) + ( result % 10 );
lda .bcdresult
mov e, a
mvi d, 0
lxi h, 10
call .um
push h
lda .bcdresult
mov e, a
mvi d, 0
lxi h, 10
call .ud
dad h
dad h
dad h
dad h
pop d
dad d
mov a, l
sta .cpu.a
;}
ret
;void op_math( op, rhs ) uint8_t op; uint8_t rhs;
; non-standard calling convention: op in c, rhs in b
op_math_:
;{
; uint8_t result;
; math = op >> 5;
mov a, c
ani 0e0h ; the math operation is in the top 3 bits
; if ( 6 == math )
; {
cpi 0c0h ; 6 in the top 3 bits
jnz .math_dec
lda .cpu.a
; return;
jmp op_bcmp_ ; returns from op_bcmp
; }
; if ( cpu.fDecimal && ( 7 == math || 3 == math ) )
.math_dec:
; {
mov e, a ; math operation is saved in e
lda .cpu.fDecimal
ora a
mov a, e
jz .math_7
cpi 0e0h
jz .math_bcd
cpi 60h
jnz .math_7
.math_bcd:
; op_bcd_math( math, rhs );
push b ; bcd math calls .ml, which trashes c
mov l, e
mov e, b
mvi d, 0
push d
mvi h, 0
push h
call op_bcd_m_
pop d
pop d
pop b
; return;
ret
; }
; if ( 7 == math )
.math_7:
; {
cpi 0e0h
jnz .math_3
; rhs = 255 - rhs;
mvi a, 0ffh
sub b
mov b, a
; math = 3;
jmp .m3_for_sure
; }
; if ( 3 == math )
.math_3:
; {
cpi 060h
jnz .math_0
.m3_for_sure:
; res16 = (uint16_t) cpu.a + (uint16_t) rhs + (uint16_t) cpu.fCarry;
lda .cpu.a
mov c, a ; save cpu.a for later
mov l, a
mvi h, 0
mov e, b
mov d, h ; h is conveniently 0
dad d
lda .cpu.fCarry
mov e, a
dad d
; result = (uint8_t) res16; /* cast generates faster code for Aztec than & 0xff */
mov d, l ; save 8-bit result in d
; cpu.fCarry = ( 0 != ( res16 & 0xff00 ) );
mov a, h ; a will be 0 or 1 (if there was a carry)
sta .cpu.fCarry
; cpu.fOverflow = ( ! ( ( cpu.a ^ rhs ) & 0x80 ) ) && ( ( cpu.a ^ result ) & 0x80 );
mvi l, 0 ; assume overflow will be false
mov a, c ; cpu.a
xra b ; rhs
ani 80h
jnz .59
mov a, c ; cpu.a
xra d ; result
ani 80h
jz .59
mvi l, 1 ; overflow is true
.59:
mov a, l
sta .cpu.fOverflow
mov a, d ; save the 8-bit result
sta .cpu.a
jmp aset_nz_
; }
; else if ( 0 == math )
.math_0:
; cpu.a |= rhs;
cpi 0
jnz .math_1
lxi d, .cpu.a
ldax d
ora b
stax d
jmp fset_nz_
; else if ( 1 == math )
.math_1:
; cpu.a &= rhs;
cpi 20h
jnz .math_2
lxi d, .cpu.a
ldax d
ana b
stax d
jmp fset_nz_
; else if ( 2 == math )
.math_2:
; cpu.a ^= rhs;
lxi d, .cpu.a
ldax d
xra b
stax d
; set_nz( cpu.a );
jmp fset_nz_
;}
;void op_pop_pf()
;{
op_pop_p_: ; doesn't modify b, c
; cpu.pf = pop();
lda .cpu.sp
inr a
mov l, a
sta .cpu.sp
mvi h, 0
lxi d, m_0000_+256
dad d
mov a, m
sta .cpu.pf
mov d, a
; cpu.fNegative = !! ( cpu.pf & 0x80 );
mvi a, 80h
ana d
jz .68
mvi a, 1
.68:
sta .cpu.fNegative
; cpu.fOverflow = !! ( cpu.pf & 0x40 );
mvi a, 40h
ana d
jz .70
mvi a, 1
.70:
sta .cpu.fOverflow
; cpu.fDecimal = !! ( cpu.pf & 8 );
mvi a, 8
ana d
jz .72
mvi a, 1
.72:
sta .cpu.fDecimal
; cpu.fInterruptDisable = !! ( cpu.pf & 4 );
mvi a, 4
ana d
jz .74
mvi a, 1
.74:
sta .cpu.fInterruptDisable
; cpu.fZero = !! ( cpu.pf & 2 );
mvi a, 2
ana d
jz .76
mvi a, 1
.76:
sta .cpu.fZero
; cpu.fCarry = ( cpu.pf & 1 );
mvi a, 1
ana d
sta .cpu.fCarry
;}
ret
;void op_php()
;{
op_php_: ; doesn't modify b, c
; cpu.pf = 0x30;
mvi e, 30h
; if ( cpu.fNegative ) cpu.pf |= 0x80;
lda .cpu.fNegative
ora a
jz .78
mov a, e
ori 80h
mov e, a
; if ( cpu.fOverflow ) cpu.pf |= 0x40;
.78:
lda .cpu.fOverflow
ora a
jz .79
mov a, e
ori 40h
mov e, a
; if ( cpu.fDecimal ) cpu.pf |= 8;
.79:
lda .cpu.fDecimal
ora a
jz .80
mov a, e
ori 8
mov e, a
; if ( cpu.fInterruptDisable ) cpu.pf |= 4;
.80:
lda .cpu.fInterruptDisable
ora a
jz .81
mov a, e
ori 4
mov e, a
; if ( cpu.fZero ) cpu.pf |= 2;
.81:
lda .cpu.fZero
ora a
jz .82
mov a, e
ori 2
mov e, a
; if ( cpu.fCarry ) cpu.pf |= 1;
.82:
lda .cpu.fCarry
ora a
jz .83
mov a, e
ori 1
mov e, a
; push( cpu.pf );
.83:
mov a, e
sta .cpu.pf
lda .cpu.sp
mov l, a
dcr a
sta .cpu.sp
mov a, e
mvi h, 0
lxi d, m_0000_+256
dad d
mov m, a
;}
ret
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; debugging
; render_f_:
; push b
; lxi h,0
; dad sp
; xchg
; lxi h, 0
; dad sp
; sphl
; push d
; ; .ac_flags[ 0 ] = cpu.fNegative ? 'N' : 'n';
; lda .cpu.fNegative
; ora a
; JZ .r85
; mvi a, 78
; JMP .r86
; .r85:
; mvi a, 110
; .r86:
; STA .ac_flags_
; ; .ac_flags[ 1 ] = cpu.fOverflow ? 'V' : 'v';
; lda .cpu.fOverflow
; ora a
; JZ .r87
; mvi a, 86
; JMP .r88
; .r87:
; mvi a, 118
; .r88:
; STA .ac_flags_+1
; ; .ac_flags[ 2 ] = cpu.fDecimal ? 'D' : 'd';
; lda .cpu.fDecimal
; ora a
; JZ .r89
; mvi a, 68
; JMP .r90
; .r89:
; mvi a, 100
; .r90:
; STA .ac_flags_+2
; ; .ac_flags[ 3 ] = cpu.fInterruptDisable ? 'I' : 'i';
; lda .cpu.fInterruptDisable
; ora a
; JZ .r91
; mvi a, 73
; JMP .r92
; .r91:
; mvi a, 105
; .r92:
; STA .ac_flags_+3
; ; .ac_flags[ 4 ] = cpu.fZero ? 'Z' : 'z';
; lda .cpu.fZero
; ora a
; JZ .r93
; mvi a, 90
; JMP .r94
; .r93:
; mvi a, 122
; .r94:
; STA .ac_flags_+4
; ; .ac_flags[ 5 ] = cpu.fCarry ? 'C' : 'c';
; lda .cpu.fCarry
; ora a
; JZ .r95
; mvi a, 67
; JMP .r96
; .r95:
; mvi a, 99
; .r96:
; STA .ac_flags_+5
; ; .ac_flags[ 6 ] = 0;
; xra a
; STA .ac_flags_+6
; ; return .ac_flags;
; LXI H, .ac_flags_
; jmp cret
; ;}
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; end debugging
;void emulate()
;{
PUBLIC emulate_
emulate_:
; enable instruction tracing in ntvcm.
; mvi c, 0b9h
; mvi d, 1
; call 5
; for (;;)
; {
; op = get_byte( cpu.pc );
lhld .cpu.pc
.big_loop ; assumes hl has cpu.pc
call get_hmem_
mov c, m ; ==> the current opcode is in register c
; It's very expensive to always load these even when they're unused,
; but it's slower overall to recalculate them for instructions that need them.
; ==> op1 is in register e (first byte after the opcode)
; ==> op2 is in register d (second byte after the opcode)
inx h
mov e, m
inx h
mov d, m
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; debugging
; push b ; preserve register c
; push d ; preserve registers d and e
; CALL render_f_
; PUSH H
; LDA .cpu.sp
; MOV L, A
; MVI H, 0
; PUSH H
; LDA .cpu.y
; MOV L, A
; PUSH H
; LDA .cpu.x
; MOV L, A
; PUSH H
; LDA .cpu.a
; MOV L, A
; PUSH H
; MOV L, c
; PUSH H
; LHLD .cpu.pc
; PUSH H
; LXI H,.trc_str
; PUSH H
; CALL printf_
; XCHG
; LXI H, 16
; DAD SP
; SPHL
; pop d ; restore registers d and e (op1 and op2)
; pop b ; restore register c (the opcode)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; end debugging
; switch( op )
mvi b, 0 ; opcode is in register c. b is initially 0 for the code below
lxi h, .jump_table
dad b
dad b
mov a, m
inx h
mov h, m
mov l, a
pchl
; {
; case 0x00: /* brk */
.93:
; {
; push_word( cpu.pc + 2 );
lhld .cpu.pc
inx h
inx h
xchg ; return address now in de
lda .cpu.sp
mov c, a
dcr a
dcr a
sta .cpu.sp ; stack pointer updated
lxi h, m_0000_ + 256
dad b
mov m, d ; write the return address high byte
dcx h
mov m, e ; write the return address low byte
; op_php();
call op_php_
; cpu.fInterruptDisable = true;
mvi a, 1
sta .cpu.fInterruptDisble
; cpu.pc = get_word( 0xfffe );
lxi h, 0fffeh
call get_hmem_
mov e, m
inx h
mov d, m
xchg ; mov r, r is 4 cycles on Z80 and 5 on 8080. xchg is 5 cycles on Z80 and 4 on 8080.
shld .cpu.pc
; continue;
jmp .big_loop
; }
; case 0x01: case 0x21: case 0x41: case 0x61: case 0xc1: case 0xe1: /* ora/and/eor/adc/cmp/sbc (a8, x) */
.94:
.95:
.96:
.97:
.98:
.99:
; {
; val = get_byte( cpu.pc + 1 ) + cpu.x;
lda .cpu.x
add e ; op1 is already in e
; op_math( op, get_byte( get_word( val ) ) );
mov l, a
mov h, b ; b is 0
call get_hmem_
mov e, m
inx h
mov d, m
xchg
call get_hmem_
mov b, m
call op_math_
; break;
mvi c, 2
mvi b, 0
jmp .next_pc
; }
; case 0x05: case 0x25: case 0x45: case 0x65: case 0xc5: case 0xe5: /* ora/and/eor/adc/cmp/sbc a8 */
.100:
.101:
.102:
.103:
.104:
.105:
; {
; op_math( op, get_byte( get_byte( cpu.pc + 1 ) )
; );
mov l, e
mov h, b ; b is 0
call get_hmem_
mov b, m
call op_math_