View Single Post
Old Jun 22nd, 2006, 1:19 PM   #43
Dragon_Master
Programmer
 
Dragon_Master's Avatar
 
Join Date: Jan 2006
Location: Some where
Posts: 74
Rep Power: 3 Dragon_Master is on a distinguished road
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;
}
Dragon_Master is offline