#include <asm/io.h>

#define JS_PORT 0x200

main()
{
    iopl(3);
    while(1)
        printf("%x\n", (inb(JS_PORT) >> 4)&1);
		
}
