I'm having difficulty with x86 assembly. (I'm programming on Emu8086 for Windows / 64.) I would like to know how to write on the screen this matrix with its respective interruptions
TETRA_T2 DB 32, 32, 32,32
DB 32, 219,32,32
DB 32, 219,219,32
DB 32, 219,32,32
I can't put '$' at the end of the array and use for exemple:
mov DX, offset VETOR_TELA
mov ah,9H
int 21h
It will conflict with another matrix that I wrote this way.
Does anyone know of any way to write this matrix?