SVMap

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: ```txt (Set up memory) 0x0000 ... 0x7FFF -> ram 0x8000 ... 0xFFFF -> ram

(Set up vectors) @reset_vector = 0xFFFD ```

See lib.rs for more information.