Praetoriansys
Technical User
How can I access a specic memory location, and what are the rules and regs to follow when doing this(ie. can't access certain addresses, addressing scheme, ect..)
Thanks
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void main (void)
{
asm {
push es
mov ax,0b800h
mov es,ax
mov di,00h
mov ah,'*'
mov es:[di],ah
pop es
}
}