xenoborg/alpha/source/xbox/nv2a.h
blueshogun96@gmail.com e140504ee8
2012-01-05 00:09:50 +00:00

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