Files
yaze/src/app/core/common.h
2022-07-09 22:52:07 -04:00

17 lines
305 B
C++

#ifndef YAZE_CORE_COMMON_H
#define YAZE_CORE_COMMON_H
#include <cstdint>
namespace yaze {
namespace app {
namespace core {
unsigned int SnesToPc(unsigned int addr);
int AddressFromBytes(uint8_t addr1, uint8_t addr2, uint8_t addr3);
} // namespace core
} // namespace app
} // namespace yaze
#endif