I decided to do this the hard way, basically because I'm a fan of old dos modes So i'm going to use Pascal and some interrupts

Any idea how i can make this work in Free pascal ?


Procedure SetMCGA; { This procedure gets you into 320x200x256 mode. }
BEGIN
asm
mov ax,0013h
int 10h
end;
END;

It doesn't look like it works in FP :/