-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdozea.asm
executable file
·27495 lines (21952 loc) · 525 KB
/
dozea.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
; Doze - Dave's Z80 Emulator - Assembler output
bits 32
section .data
times ($$-$) & 3 db 0
; Z80 Registers
global _Doze
_Doze:
DozeAF dw 0
DozeBC dw 0
DozeDE dw 0
DozeHL dw 0
DozeIX dw 0
DozeIY dw 0
DozePC dw 0
DozeSP dw 0
DozeAF2 dw 0
DozeBC2 dw 0
DozeDE2 dw 0
DozeHL2 dw 0
DozeIR dw 0
DozeIFF dw 0
DozeIM db 0
times ($$-$) & 3 db 0
global _nDozeCycles
_nDozeCycles: dd 0 ; Cycles left (in T-states)
global _nDozeEi
_nDozeEi: dd 0 ; 1 = assembler quit on EI, 2 = assembler did quit on EI
SaveReg: times 6 dd 0
Tmp16: dw 0
TmpFlag: db 0
times ($$-$) & 3 db 0
global _DozeMemFetch
_DozeMemFetch: times 0x100 dd 0
global _DozeMemRead
_DozeMemRead: times 0x100 dd 0
global _DozeMemWrite
_DozeMemWrite: times 0x100 dd 0
section .text
%macro SAVE_REGS 0
push ebx
push ecx
push edx
push esi
push edi
push ebp
%endmacro
%macro RESTORE_REGS 0
pop ebp
pop edi
pop esi
pop edx
pop ecx
pop ebx
%endmacro
%macro DOZE_TO_REG 0
; Load a into al, f into ah
mov ax,word [DozeAF]
ror ax,8
; Load hl into cx
mov cx,word [DozeHL]
mov bl,byte [DozeIR] ; Load bl <- R counter
rol bl,1 ; bl <-- R register bits (65432107)
xor esi,esi
mov si,word [DozePC] ; Load si <- PC
%endmacro
%macro REG_BLANK 0
xor edx,edx ; High 16 bits of edx kept clear
xor edi,edi ; High 16 bits of edi kept clear
%endmacro
%macro REG_TO_DOZE 0
; Save a from al, f from ah
ror ax,8
mov word [DozeAF],ax
; Save hl from cx
mov word [DozeHL],cx
ror bl,1 ; bl --> R register bits 76543210
mov byte [DozeIR],bl ; Save bl -> R counter
mov word [DozePC],si ; Save si -> PC
%endmacro
%macro DAM_FETCH8 0
; Fetch byte (esi) ==> dl
mov dx,si
shr dx,8
mov ebp,dword[_DozeMemFetch+edx*4]
xor edx,edx
mov dl,byte [ebp+esi]
xor ebp,ebp
%endmacro
%macro DAM_FETCH16 0
; Fetch word (esi) ==> dx
mov dx,si
shr dx,8
mov ebp,dword[_DozeMemFetch+edx*4]
xor edx,edx
mov dx,word [ebp+esi]
xor ebp,ebp
%endmacro
%macro DAM_READ8 0
; Read byte (edi) ==> dl
mov ebp,edi
shr bp,8
mov ebp,dword[_DozeMemRead+ebp*4]
test ebp,ebp
jnz %%Direct
call Read
jmp %%Done
%%Direct:
mov dl,byte [ebp+edi]
%%Done:
%endmacro
%macro DAM_WRITE8 0
; Write byte dl ==> (edi)
mov ebp,edi
shr bp,8
mov ebp,dword[_DozeMemWrite+ebp*4]
test ebp,ebp
jnz %%Direct
call Write
jmp %%Done
%%Direct:
mov byte [ebp+edi],dl
%%Done:
%endmacro
%macro DAM_READ16 0
; Read word (edi) ==> dx
inc di
DAM_READ8
dec di
mov dh,dl
DAM_READ8
%endmacro
%macro DAM_WRITE16 0
; Write word dx ==> (edi)
inc di
ror dx,8
DAM_WRITE8
dec di
ror dx,8
DAM_WRITE8
%endmacro
%macro FETCH_OP 0
; Fetch next normal opcode
DAM_FETCH8
inc si
xor dh,dh
jmp [JumpTab+edx*4]
%endmacro
%macro INC_R 0
add bl,2 ; Increase instruction counter R (bit 7 never modified)
%endmacro
times ($$-$) & 3 db 0
extern _DozeRead
Read:
REG_TO_DOZE
push edx
push edi
push edi
call _DozeRead
add esp,4
pop edi
pop edx
mov dl,al
DOZE_TO_REG
ret
times ($$-$) & 3 db 0
extern _DozeWrite
Write:
REG_TO_DOZE
push edx
push edi
push edx
push edi
call _DozeWrite
add esp,8
pop edi
pop edx
DOZE_TO_REG
ret
times ($$-$) & 3 db 0
extern _DozeIn
PortIn:
REG_TO_DOZE
push edx
push edi
push edi
call _DozeIn
add esp,4
pop edi
pop edx
mov dl,al
DOZE_TO_REG
ret
times ($$-$) & 3 db 0
extern _DozeOut
PortOut:
REG_TO_DOZE
push edx
push edi
push edx
push edi
call _DozeOut
add esp,8
pop edi
pop edx
DOZE_TO_REG
ret
times ($$-$) & 3 db 0
; Call a routine
global _DozeAsmCall
_DozeAsmCall:
mov ax,word[esp+4] ; Get address
mov word[Tmp16],ax
SAVE_REGS
REG_BLANK
DOZE_TO_REG
INC_R
sub word [DozeSP],2
mov dx,si
mov di,word [DozeSP]
DAM_WRITE16
mov dx,word[Tmp16]
mov si,dx
REG_TO_DOZE
RESTORE_REGS
ret
times ($$-$) & 3 db 0
; Read a byte from memory
global _DozeAsmRead
_DozeAsmRead:
mov ax,word[esp+4] ; Get address
mov word[Tmp16],ax
SAVE_REGS
REG_BLANK
DOZE_TO_REG
mov di,word [Tmp16]
DAM_READ8
REG_TO_DOZE
xor eax,eax
mov al,dl
RESTORE_REGS
ret
times ($$-$) & 3 db 0
global _DozeAsmRun
_DozeAsmRun:
SAVE_REGS
REG_BLANK
DOZE_TO_REG
FETCH_OP ; Fetch first opcode
DozeRunEnd: ; After cycles have run out, we come back here
REG_TO_DOZE
RESTORE_REGS
ret
; 00 - nop
;****************************************************************
times ($$-$) & 3 db 0
Op00 : INC_R
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op01 : INC_R
; Load Immediate 16-bit
DAM_FETCH16
add si,2
mov word [DozeBC],dx
sub dword [_nDozeCycles],10
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op02 : INC_R
; 02 - ld (bc),a
; Get Save address:
mov di,word [DozeBC]
mov dl,al
DAM_WRITE8 ; Save to address
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op03 : INC_R
inc word [DozeBC]
; (With 16-bit inc, flags aren't changed)
sub dword [_nDozeCycles],6
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op04 : INC_R
and ah,0x01 ; Keep carry flag
inc byte [DozeBC+1]
mov dl,byte [DozeBC+1]
xor dh,dh
or ah,byte [IncFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op05 : INC_R
and ah,0x01 ; Keep carry flag
dec byte [DozeBC+1]
mov dl,byte [DozeBC+1]
xor dh,dh
or ah,byte [DecFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op06 : INC_R
; Load Value 8-bit
DAM_FETCH8
inc si
mov byte [DozeBC+1],dl
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op07 : INC_R
mov dl,al
sahf
rol dl,1
setc dh ; ---- ---C
and ah,0xc4 ; ..00 0.00
or ah,dh ; ..00 0.0C
mov al,dl
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op08 : INC_R
; 08 - ex af,af'
rol ax,8
mov dx,ax
mov ax,word [DozeAF2]
mov word [DozeAF2],dx
rol ax,8
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op09 : INC_R
mov bh,ah
and bh,0xc4 ; Remember SZ---P--
mov dx,word [DozeBC]
ror ebx,16 ; Get access to a spare bit of ebx
mov bx,dx
mov dx,cx
; Do operation in two bytes to get the correct z80 flags (for the msb)
add dl,bl
adc dh,bh
lahf
mov cx,dx
ror ebx,16 ; Done with ebx
and ah,0x11 ; ---H---C get flags.
and dh,0x28
or ah,dh ; --5H3--C
or ah,bh
sub dword [_nDozeCycles],11
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op0A : INC_R
; 0a - ld a,(bc)
; Get Load address:
mov di,word [DozeBC]
DAM_READ8 ; Load from address
mov al,dl
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op0B : INC_R
dec word [DozeBC]
; (With 16-bit inc, flags aren't changed)
sub dword [_nDozeCycles],6
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op0C : INC_R
and ah,0x01 ; Keep carry flag
inc byte [DozeBC]
mov dl,byte [DozeBC]
xor dh,dh
or ah,byte [IncFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op0D : INC_R
and ah,0x01 ; Keep carry flag
dec byte [DozeBC]
mov dl,byte [DozeBC]
xor dh,dh
or ah,byte [DecFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op0E : INC_R
; Load Value 8-bit
DAM_FETCH8
inc si
mov byte [DozeBC],dl
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op0F : INC_R
mov dl,al
sahf
ror dl,1
setc dh ; ---- ---C
and ah,0xc4 ; ..00 0.00
or ah,dh ; ..00 0.0C
mov al,dl
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op10 : INC_R
inc si
; 10 nn - djnz +nn
mov dl,byte [DozeBC+1]
dec dl
jnz BNotZero0
mov byte [DozeBC+1],dl
sub dword [_nDozeCycles],8
jle near DozeRunEnd
FETCH_OP
BNotZero0:
mov byte [DozeBC+1],dl
; Get Jump offset:
dec si
DAM_FETCH8
inc si
xor dh,dh
xor dl,0x80
sub dx,0x80
add si,dx
sub dword [_nDozeCycles],13
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op11 : INC_R
; Load Immediate 16-bit
DAM_FETCH16
add si,2
mov word [DozeDE],dx
sub dword [_nDozeCycles],10
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op12 : INC_R
; 02 - ld (de),a
; Get Save address:
mov di,word [DozeDE]
mov dl,al
DAM_WRITE8 ; Save to address
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op13 : INC_R
inc word [DozeDE]
; (With 16-bit inc, flags aren't changed)
sub dword [_nDozeCycles],6
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op14 : INC_R
and ah,0x01 ; Keep carry flag
inc byte [DozeDE+1]
mov dl,byte [DozeDE+1]
xor dh,dh
or ah,byte [IncFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op15 : INC_R
and ah,0x01 ; Keep carry flag
dec byte [DozeDE+1]
mov dl,byte [DozeDE+1]
xor dh,dh
or ah,byte [DecFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op16 : INC_R
; Load Value 8-bit
DAM_FETCH8
inc si
mov byte [DozeDE+1],dl
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op17 : INC_R
mov dl,al
sahf
rcl dl,1
setc dh ; ---- ---C
and ah,0xc4 ; ..00 0.00
or ah,dh ; ..00 0.0C
mov al,dl
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
; 18 nn - jr +nn
;****************************************************************
times ($$-$) & 3 db 0
Op18 : INC_R
; Get Jump offset:
DAM_FETCH8
inc si
xor dh,dh
xor dl,0x80
sub dx,0x80
add si,dx
sub dword [_nDozeCycles],12
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op19 : INC_R
mov bh,ah
and bh,0xc4 ; Remember SZ---P--
mov dx,word [DozeDE]
ror ebx,16 ; Get access to a spare bit of ebx
mov bx,dx
mov dx,cx
; Do operation in two bytes to get the correct z80 flags (for the msb)
add dl,bl
adc dh,bh
lahf
mov cx,dx
ror ebx,16 ; Done with ebx
and ah,0x11 ; ---H---C get flags.
and dh,0x28
or ah,dh ; --5H3--C
or ah,bh
sub dword [_nDozeCycles],11
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op1A : INC_R
; 0a - ld a,(de)
; Get Load address:
mov di,word [DozeDE]
DAM_READ8 ; Load from address
mov al,dl
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op1B : INC_R
dec word [DozeDE]
; (With 16-bit inc, flags aren't changed)
sub dword [_nDozeCycles],6
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op1C : INC_R
and ah,0x01 ; Keep carry flag
inc byte [DozeDE]
mov dl,byte [DozeDE]
xor dh,dh
or ah,byte [IncFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op1D : INC_R
and ah,0x01 ; Keep carry flag
dec byte [DozeDE]
mov dl,byte [DozeDE]
xor dh,dh
or ah,byte [DecFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op1E : INC_R
; Load Value 8-bit
DAM_FETCH8
inc si
mov byte [DozeDE],dl
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op1F : INC_R
mov dl,al
sahf
rcr dl,1
setc dh ; ---- ---C
and ah,0xc4 ; ..00 0.00
or ah,dh ; ..00 0.0C
mov al,dl
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op20 : INC_R
inc si
sahf ; Get flags so we can test for the condition
jz ConditionFalse0
; Get Jump offset:
dec si
DAM_FETCH8
inc si
xor dl,0x80
xor dh,dh
sub dx,0x80
add si,dx
sub dword [_nDozeCycles],12
jle near DozeRunEnd
FETCH_OP
ConditionFalse0:
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op21 : INC_R
; Load Immediate 16-bit
DAM_FETCH16
add si,2
mov cx,dx
sub dword [_nDozeCycles],10
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op22 : INC_R
; Direct access to a memory location
DAM_FETCH16
add si,2
mov di,dx
mov dx,cx
DAM_WRITE16
sub dword [_nDozeCycles],16
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op23 : INC_R
inc cx
; (With 16-bit inc, flags aren't changed)
sub dword [_nDozeCycles],6
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op24 : INC_R
and ah,0x01 ; Keep carry flag
inc ch
mov dl,ch
xor dh,dh
or ah,byte [IncFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op25 : INC_R
and ah,0x01 ; Keep carry flag
dec ch
mov dl,ch
xor dh,dh
or ah,byte [DecFlag+edx]
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op26 : INC_R
; Load Value 8-bit
DAM_FETCH8
inc si
mov ch,dl
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op27 : INC_R
; 27 - daa
mov dh,ah
ror dh,2 ;H-- ---- ----
and dx,0x400
and ax,0x3ff
or dx,ax ; HNC nnnn nnnn
mov ax,word[DaaTable+edx*2] ; Get flags and value in one go
sub dword [_nDozeCycles],4
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op28 : INC_R
inc si
sahf ; Get flags so we can test for the condition
jnz ConditionFalse1
; Get Jump offset:
dec si
DAM_FETCH8
inc si
xor dl,0x80
xor dh,dh
sub dx,0x80
add si,dx
sub dword [_nDozeCycles],12
jle near DozeRunEnd
FETCH_OP
ConditionFalse1:
sub dword [_nDozeCycles],7
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op29 : INC_R
mov bh,ah
and bh,0xc4 ; Remember SZ---P--
mov dx,cx
ror ebx,16 ; Get access to a spare bit of ebx
mov bx,dx
mov dx,cx
; Do operation in two bytes to get the correct z80 flags (for the msb)
add dl,bl
adc dh,bh
lahf
mov cx,dx
ror ebx,16 ; Done with ebx
and ah,0x11 ; ---H---C get flags.
and dh,0x28
or ah,dh ; --5H3--C
or ah,bh
sub dword [_nDozeCycles],11
jle near DozeRunEnd
FETCH_OP
;****************************************************************
times ($$-$) & 3 db 0
Op2A : INC_R
; Direct access to a memory location