Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gocha/ida-snes-ldr
SNES ROM Cartridge File Loader for IDA (Interactive Disassembler) 6.x
https://github.com/gocha/ida-snes-ldr
Last synced: 3 months ago
JSON representation
SNES ROM Cartridge File Loader for IDA (Interactive Disassembler) 6.x
- Host: GitHub
- URL: https://github.com/gocha/ida-snes-ldr
- Owner: gocha
- Created: 2015-12-24T02:15:43.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T07:10:23.000Z (over 5 years ago)
- Last Synced: 2024-05-27T12:43:32.390Z (6 months ago)
- Language: C++
- Homepage:
- Size: 169 KB
- Stars: 23
- Watchers: 5
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SNES Loader for IDA
===================This is a IDA 6.x loader plugin for Super Nintendo Entertainment System / Super Famicom (SNES / SFC) ROM (*.smc; *.sfc)
With [65816 processor plugin](https://github.com/gocha/ida-65816-module), you can load a SNES cartridge file into IDA.
**IMPORTANT NOTICE**:
The SNES loader was forked from [IDA SDK 6.8](https://www.hex-rays.com/products/ida/support/download.shtml),
published by [Hex-Rays](https://www.hex-rays.com/). In IDA 7.0, Hey-Rays has made breaking changes on IDA API design and has been released an [migrating guide](https://www.hex-rays.com/products/ida/7.0/docs/api70_porting_guide.shtml). I don't plan to maintain this repository to follow new IDA API design at the moment. I think I will try to make an IDAPython plugin from scratch instead, when I seriously need an extension for SNES reverse engineering, but I really don't need that very soon.**To IDA 7.x users**: You can find the source code in the official IDA SDK.
How to compile
--------------1. Download and install [IDA SDK](https://www.hex-rays.com/products/ida/support/download.shtml) (expected version is IDA SDK 6.9)
2. Clone the repository into $(IDASDK)/ldr/snes
3. Compile the project with [Visual Studio](https://www.visualstudio.com/downloads/download-visual-studio-vs.aspx)Read official development guides for more details of generic IDA development.