euphrates_virtual_memory 0.1.0

Allows the Euphrates game console emulator library to use native virtual memory to emulate memory bank switching.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(bare_trait_objects, anonymous_parameters)]

extern crate euphrates;
extern crate libc;
extern crate rand;

mod external;
mod posix;
mod traits;

use posix::*;

pub use external::*;