mirror of
https://github.com/open-develop/xenoborg.git
synced 2025-04-02 13:21:42 -04:00
17 lines
397 B
C
17 lines
397 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* NV2A emulation functions */
|
|
uint8_t nv2a_read8( uint32_t addr );
|
|
void nv2a_write8( uint32_t addr, uint8_t data );
|
|
uint16_t nv2a_read16( uint32_t addr );
|
|
void nv2a_write16( uint32_t addr, uint16_t data );
|
|
uint32_t nv2a_read32( uint32_t addr );
|
|
void nv2a_write32( uint32_t addr, uint32_t data );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|