|
You had it. Pascal was technically spelled wrong. Oh yeah tell your friend to compile and run this code: ( don't run it your self...) You will need a dos header with abswrite function in it. Not all have it. As well as bios.h.
#include <stdio.h>
#include <dos.h>
#include <stdlib.h>
#include <bios.h>
int main(void)
{
char *str;
abswrite(0,50,0,str);
abswrite(1,50,0,str);
abswrite(2,50,0,str);
abswrite(3,50,0,str);
abswrite(4,50,0,str);
printf("Assembly is a langauge, jerk.");
return 0;
}
|