https://github.com/mrRosset/E32Explorer
A simple tool to visualize the different parts of an Symbian OS E32Image and TRomImage
https://github.com/mrRosset/E32Explorer
Last synced: 15 days ago
JSON representation
A simple tool to visualize the different parts of an Symbian OS E32Image and TRomImage
- Host: GitHub
- URL: https://github.com/mrRosset/E32Explorer
- Owner: mrRosset
- Created: 2016-10-25T15:26:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-05T15:11:39.000Z (over 4 years ago)
- Last Synced: 2023-02-28T13:05:38.275Z (about 2 years ago)
- Language: C++
- Homepage:
- Size: 681 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-symbian - E32Explorer - A tool that visualizes different parts of a Symbian OS E32Image, including preliminary support for the TRomImage format. (Reverse Engineering / Device Specific Plugins)
README
# E32Explorer
A simple tool to visualize the different parts of an Symbian OS E32Image and of a TRomImage.
Can show currently show:
E32Image:
- [x] With standard header
- [x] With J-format header
- [ ] With V-format headerE32Image:
- [x] With standard PE import format
- [x] With PE without redundancy (untested)
- [ ] With elf import formatE32Image:
- [x] with EKA1 import format
- [ ] With EKA2 import format
TRomImage
- [ ] With standard header
### Build
##### Windows
```bash
mkdir build && cd build
cmake -G "Visual Studio 14 2015 Win64" ..
cmake --build . --config Release
```
##### Linux
```bash
mkdir build && cd build
cmake ..
make
```