質問編集履歴
1
printf("IOmem mmaped at %p_n", iomap);をprintf("IOmem mmaped at %p\n", iomap);に修正しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -25,7 +25,7 @@
|
|
25
25
|
perror(DEVNAME);
|
26
26
|
exit(1);
|
27
27
|
}
|
28
|
-
printf("IOmem mmaped at %
|
28
|
+
printf("IOmem mmaped at %p\n", iomap);
|
29
29
|
//port = 0xFF210041;
|
30
30
|
//*(iomap + port - from) &= 0x00;
|
31
31
|
|