Skip to content

Commit

Permalink
Real 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Louise committed Dec 31, 2017
1 parent 33a2330 commit e1e75cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
10 changes: 3 additions & 7 deletions rgba_dmg_core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
;; Filename: README.md
;; Author: Louise <louise>
;; Created: Tue Dec 26 11:53:56 2017 (+0100)
;; Last-Updated: Thu Dec 28 01:33:28 2017 (+0100)
;; Last-Updated: Sun Dec 31 22:07:53 2017 (+0100)
;; By: Louise <louise>
-->

# DMG Core (Gameboy)

The dmg core is the first core to have been written. It's still being written.
The dmg core is the first core to have been written. It's currently in its 1.0 version.

## Supported features

Expand All @@ -20,11 +20,7 @@ The dmg core is the first core to have been written. It's still being written.
- No MBC, MBC1 and MBC3 (without RTC)
- Basic debugger (stepping, breakpoints, watchpoints, disassembly)

## Planned features for 1.0

- GBC support

## Planned features for later
## Planned features

- RTC support for MBC3
- Booting without bootrom
Expand Down
6 changes: 3 additions & 3 deletions rgba_dmg_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Filename: mod.rs
// Author: Louise <louise>
// Created: Wed Dec 6 14:33:34 2017 (+0100)
// Last-Updated: Wed Dec 27 23:57:28 2017 (+0100)
// Last-Updated: Sun Dec 31 22:04:43 2017 (+0100)
// By: Louise <louise>
//
#[macro_use] extern crate log;
Expand Down Expand Up @@ -68,8 +68,8 @@ impl Gameboy {
new_elapsed.subsec_nanos() as u64;

let s = format!(
"rGBA ({:.4} FPS)",
(1.0 / (elapsed_nanos as f64)) * 1000000000.0
"rGBA [{}/60]",
((1.0 / (elapsed_nanos as f64)) * 1000000000.0).round() as u32
);

platform.set_title(s);
Expand Down

0 comments on commit e1e75cc

Please sign in to comment.