/* DM&P Mity SoC Example Copyright (C) 2002 by DM&P. This example is will show you how to dump message to 80H port to debug. */ #include #include void main() { outportb(0x80, 0x01); printf("This is breakpoint 1.\n"); getch(); outportb(0x80, 0x02); printf("This is breakpoint 2.\n"); getch(); outportb(0x80, 0x03); printf("This is breakpoint 3.\n"); getch(); }