| Crates.io | svmap |
| lib.rs | svmap |
| version | 0.3.0 |
| created_at | 2023-05-28 19:29:59.767238+00 |
| updated_at | 2023-06-10 20:29:28.540796+00 |
| description | A library to parse SVMap, used to map memory for emulators. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 876674 |
| size | 25,679 |
This crate provides a library to parse SVMap files (*.svmap), used to map/configure memory for
emulators. This way emulator memory can be configured with editing a simple and human-readable text
document instead of needing to reprogram and recompile an existing emulator.
Example of a SVMap file:
(Set up memory)
0x0000 ... 0x7FFF -> ram
0x8000 ... 0xFFFF -> rom
(Set up vectors)
@reset_vector = 0xFFFD
See lib.rs for more information.