Files
yaze/src/app/core/common.h
Justin Scofield 0beaf375fa formatting
2022-07-12 21:33:19 -04:00

18 lines
344 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);
int HexToDec(char *input, int length);
} // namespace core
} // namespace app
} // namespace yaze
#endif