summaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-12-10 15:32:59 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-12-10 15:32:59 -0500
commit412ef97d711a569d0cd4c29103e53b6416ea5a0b (patch)
tree7420b6cfb3644bd5604f47a9476b31701fb3f6ba /docs
parente733af5b0807dbf88ad32645f4c39210de99946c (diff)
No more UINT (nw)
Diffstat (limited to 'docs')
-rw-r--r--docs/source/techspecs/device_rom_interface.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/techspecs/device_rom_interface.rst b/docs/source/techspecs/device_rom_interface.rst
index 8baf7fbb576..3a40590fc01 100644
--- a/docs/source/techspecs/device_rom_interface.rst
+++ b/docs/source/techspecs/device_rom_interface.rst
@@ -15,7 +15,7 @@ as rom. In the region/block cases, banking is automatically handled.
2. Setup
--------
-| **device_rom_interface**\ (const machine_config &mconfig, device_t &device, UINT8 addrwidth, endianness_t endian = ENDIANNESS_LITTLE, UINT8 datawidth = 8)
+| **device_rom_interface**\ (const machine_config &mconfig, device_t &device, u8 addrwidth, endianness_t endian = ENDIANNESS_LITTLE, u8 datawidth = 8)
The constructor of the interface wants, in addition to the standard
parameters, the address bus width of the dedicated bus. In addition
@@ -60,10 +60,10 @@ times.
3. Rom access
-------------
-| UINT8 **read_byte**\ (offs_t byteaddress)
-| UINT16 **read_word**\ (offs_t byteaddress)
-| UINT32 **read_dword**\ (offs_t byteaddress)
-| UINT64 **read_qword**\ (offs_t byteaddress)
+| u8 **read_byte**\ (offs_t byteaddress)
+| u16 **read_word**\ (offs_t byteaddress)
+| u32 **read_dword**\ (offs_t byteaddress)
+| u64 **read_qword**\ (offs_t byteaddress)
These methods provide read access to the connected rom. Out-of-bounds
access results in standard unmapped read logerror messages.