Beispiel #1
0
unsigned char readbyte(){
  initreg();
        unsigned char a;
        outb(0xF1,w83627e);
        a=inb(w83627f);
        exitreg();
        return a;
}
Beispiel #2
0
/**
 * @brief Initializes the memory system.
 */
PUBLIC void mm_init(void)
{
	initreg();
}
Beispiel #3
0
void writebyte(unsigned char a){
  initreg();
        outb(0xF1,w83627e);
        outb(a,w83627f);
        exitreg();
}