diff options
| author | 2026-05-01 17:08:26 +0200 | |
|---|---|---|
| committer | 2026-05-01 17:08:26 +0200 | |
| commit | 8a85a8f3a70fff7ba13728fbbe99a308ddd81bd2 (patch) | |
| tree | a512b5b43091c82bb2a30781b500d00ae1c9a865 /src/devices/cpu/sharc/sharc.cpp | |
| parent | af9ef3f74aa04e1c4f80b63d4fb4445586d04d30 (diff) | |
Redoing offs_t to 64-bits expansion.
Diffstat (limited to 'src/devices/cpu/sharc/sharc.cpp')
| -rw-r--r-- | src/devices/cpu/sharc/sharc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/sharc/sharc.cpp b/src/devices/cpu/sharc/sharc.cpp index 5039686a7c7..95230c3f9fc 100644 --- a/src/devices/cpu/sharc/sharc.cpp +++ b/src/devices/cpu/sharc/sharc.cpp @@ -481,7 +481,7 @@ void adsp21062_device::build_opcode_table() /*****************************************************************************/ -void adsp21062_device::external_iop_write(uint32_t address, uint32_t data) +void adsp21062_device::external_iop_write(offs_t address, uint32_t data) { // host packing mode used to determine width of external host bus width (16/32) // if writing to external port DMA buffer, just write the data directly; @@ -514,7 +514,7 @@ void adsp21062_device::external_iop_write(uint32_t address, uint32_t data) } } -void adsp21062_device::external_dma_write(uint32_t address, uint64_t data) +void adsp21062_device::external_dma_write(offs_t address, uint64_t data) { /* All addresses in the 17-bit index registers are offset by 0x0002 0000, the |
