Люди кто нить проверял работу оного?LD B, B - Switch the Accelerator off.
LD D, D - Switch the Accelerator in the mode of load a byte of block size.
Next command is "LD A, dat" where "dat" is a new block size.
LD C, C - Switch the Accelerator to filling by one byte mode for horizontal line.
Next command "LD (HL), A" will fill all bytes by value of A.
LD E, E - Switch the Accelerator to filling by one byte mode for vertical line.
LD H, H - Reserved.
LD L, L - Switch the Accelerator to copying a data block mode for horizontal line of the screen.
Next command "LD A, (HL)" will fill the Accelerator memory by value of (HL).
And the command "LD (DE), A" will copy the data from the Accelerator memory to RAM or to VideoRAM.
LD A, A - Switch the Accelerator to copying a data block mode for vertical line of the screen.
Короче у меня функции OR и AND работает, а вот XOR не работает....
Видеопамять в первом окне (#4000-#7FFF), прога во втором (#8000-#BFFF).
Фрагмент следующий:
DI
LD l,l
LD a,(de)
XOR (hl)
LD (hl),a
LD b,b
EI
причем HL и DE адреса в видеопамяти.
OR и AND работают, а XOR работает как OR
