Skip to content
Snippets Groups Projects
Commit 46aef01d authored by bunnei's avatar bunnei
Browse files

lcd: moved kFrameTicks to lcd.h for use in other modules

parent 70af9d62
No related branches found
No related tags found
No related merge requests found
...@@ -17,8 +17,6 @@ namespace LCD { ...@@ -17,8 +17,6 @@ namespace LCD {
Registers g_regs; Registers g_regs;
static const u32 kFrameTicks = 268123480 / 60; ///< 268MHz / 60 frames per second
u64 g_last_ticks = 0; ///< Last CPU ticks u64 g_last_ticks = 0; ///< Last CPU ticks
/** /**
......
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
namespace LCD { namespace LCD {
static const u32 kFrameTicks = 268123480 / 60; ///< 268MHz / 60 frames per second
struct Registers { struct Registers {
u32 framebuffer_top_left_1; u32 framebuffer_top_left_1;
u32 framebuffer_top_left_2; u32 framebuffer_top_left_2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment