├── .gitignore ├── README.md ├── pch.cpp ├── pch.h ├── ps4syscon.py ├── reg.cpp └── vs ├── base.props ├── ida.props ├── rl78-ida-proc.sln └── rl78-ida-proc.vcxproj /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | vs/x64 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/README.md -------------------------------------------------------------------------------- /pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/pch.h -------------------------------------------------------------------------------- /ps4syscon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/ps4syscon.py -------------------------------------------------------------------------------- /reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/reg.cpp -------------------------------------------------------------------------------- /vs/base.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/vs/base.props -------------------------------------------------------------------------------- /vs/ida.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/vs/ida.props -------------------------------------------------------------------------------- /vs/rl78-ida-proc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/vs/rl78-ida-proc.sln -------------------------------------------------------------------------------- /vs/rl78-ida-proc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/rl78-ida-proc/HEAD/vs/rl78-ida-proc.vcxproj --------------------------------------------------------------------------------