This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- The C compiler identification is GNU 6.3.1 | |
| -- The CXX compiler identification is GNU 6.3.1 | |
| -- Check for working C compiler: /usr/bin/cc | |
| -- Check for working C compiler: /usr/bin/cc -- works | |
| -- Detecting C compiler ABI info | |
| -- Detecting C compiler ABI info - done | |
| -- Detecting C compile features | |
| -- Detecting C compile features - done | |
| -- Check for working CXX compiler: /usr/bin/c++ | |
| -- Check for working CXX compiler: /usr/bin/c++ -- works |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::fs::File; | |
| use std::io::Read; | |
| use std::path::Path; | |
| /// Public interface for an iNES format rom | |
| pub struct InesRom { | |
| header: Header, | |
| trainer: Vec<u8>, | |
| prg_rom: Vec<u8>, | |
| chr: Vec<u8>, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use super::mapper::*; | |
| // TODO: extract info | |
| pub struct Cartridge { | |
| mapper: Box<Mapper>, | |
| } | |
| pub struct RomHeader { | |
| pub prg_rom_size: u8, // In 16kB units | |
| pub prg_ram_size: u8, // In 8kB units |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @namespace html url(http://www.w3.org/1999/xhtml); | |
| @namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
| /* | |
| Author: Twily | |
| Description: Minimal flat styled tabs for Australis | |
| Compatibility: -- Firefox 43.0.4 -- | |
| Website: http://twily.info/ | |
| Useful search tags within this css: |