_AH = 0;
_AL = 13;
geninterrupt(0x10);
and i know i set the screen to mode 13 because my mouse cursor(this is in a mouse program) showed up as a cursor, and the text is all blocky(8x8). however, when i tried to set a pointer to 0xA000, which (i believe)is the address of the screen, and change a pixel...
*(pointer_to_screen + x + 320 * y) = color
... it did nothing. is there a way to do this? ive tried doing it the way the tutorials said in the tutorial section, but it didn't work. can anyone help? maybe there's a way to plot pixels w/ interrupts?
im sure someone out there knows, so im thanking you for your help in advance.