Currently I’m using an x86 PC-104 system and I’m trying to access the
watchdog register located at address 0xE0. I’m using the following
code segment:
intptr = mmap_device_io( 1, 0xE0 );
int8 = in8( intptr );
The program caused runtime error ‘fragmentation fault’. Does anyone
know why? Or better yet, what’s the correct way to access this
register located at address 0xE0. Thanks
Currently I’m using an x86 PC-104 system and I’m trying to access the
watchdog register located at address 0xE0. I’m using the following
code segment:
intptr = mmap_device_io( 1, 0xE0 );
int8 = in8( intptr );
The program caused runtime error ‘fragmentation fault’. Does anyone
know why? Or better yet, what’s the correct way to access this
register located at address 0xE0. Thanks