We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 465d588 commit 7bd6fc9Copy full SHA for 7bd6fc9
1 file changed
src/gpu.c
@@ -296,7 +296,7 @@ uint8_t GPUReadByte(uint32_t offset, uint32_t who/*=UNKNOWN*/)
296
}
297
298
// GPU word access (read)
299
-uint16_t GPUReadWord(uint32_t offset, uint32_t who/*=UNKNOWN*/)
+INLINE uint16_t GPUReadWord(uint32_t offset, uint32_t who/*=UNKNOWN*/)
300
{
301
if ((offset >= GPU_WORK_RAM_BASE) && (offset < GPU_WORK_RAM_BASE+0x1000))
302
@@ -325,7 +325,7 @@ uint16_t GPUReadWord(uint32_t offset, uint32_t who/*=UNKNOWN*/)
325
326
327
// GPU dword access (read)
328
-uint32_t GPUReadLong(uint32_t offset, uint32_t who/*=UNKNOWN*/)
+INLINE uint32_t GPUReadLong(uint32_t offset, uint32_t who/*=UNKNOWN*/)
329
330
if (offset >= 0xF02000 && offset <= 0xF020FF)
331
0 commit comments