I have problems with the syntax in turbo pascal, this in debug works with no problem, but I can't make it work in Turbo Pascal.
program foo;
begin
asm
mov ah,06h;
mov bh,$21;
mov cx,$0000;
mov bx,$1950;
int 10h;
mov ah,00h;
int 16h;
end;
end.
I don't know what is wrong.
PD: what means the h, the $ and the b in this thing?