diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-01-05 00:02:28 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-01-05 00:02:28 +0000 |
commit | 7138fcfbf7dd74a0bc68e2fc3fa7c5ba58f2d6c8 (patch) | |
tree | c15d2e729e54044a99f96cc077ec827c6053e067 /hw/sb16.c | |
parent | c45886db19fb117a8ad8a5118572d23a957e5de5 (diff) | |
download | qemu-7138fcfbf7dd74a0bc68e2fc3fa7c5ba58f2d6c8.zip |
use CPUState
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@540 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/sb16.c')
-rw-r--r-- | hw/sb16.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,9 +48,9 @@ #endif #define IO_READ_PROTO(name) \ - uint32_t name (struct CPUX86State *env, uint32_t nport) + uint32_t name (struct CPUState *env, uint32_t nport) #define IO_WRITE_PROTO(name) \ - void name (struct CPUX86State *env, uint32_t nport, uint32_t val) + void name (struct CPUState *env, uint32_t nport, uint32_t val) static struct { int ver_lo; |