There is an small error in the "main.c" that however does not prevent the correct execution of the simulator.
You can fix by yourself if you want to...
184: //Err: char * ps = (WORD * )&vid; // video memory pointer
185: //Err: char * ls = (WORD * )&vbtmp; // line buffer pointer
184: //Fix: char * ps = (char * )&vid; // video memory pointer
185: //Fix: char * ls = (char * )&vbtmp; // line buffer pointer
I greet you and thank you.
Anonymous