diff options
author | Christian Cunningham <cc@localhost> | 2022-02-24 23:38:38 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-02-24 23:38:38 -0700 |
commit | 9169796632fcdeb5e8e74ed60c6cbe31081e51f2 (patch) | |
tree | f9076beb2cbdd4f8cb2677b9be64fa145b0fc3d1 /src/graphics | |
parent | a9e89946ad7f6918b954d7416c755a90c0eace9d (diff) |
MMU and working on hardware
Diffstat (limited to 'src/graphics')
-rw-r--r-- | src/graphics/lfb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/graphics/lfb.c b/src/graphics/lfb.c index 20053bc..ee31514 100644 --- a/src/graphics/lfb.c +++ b/src/graphics/lfb.c @@ -7,8 +7,10 @@ unsigned char *lfb; /* raw frame buffer address */ -#define SCR_WIDTH 1024 -#define SCR_HEIGHT 768 +//#define SCR_WIDTH 1024 +//#define SCR_HEIGHT 768 +#define SCR_WIDTH 1920 +#define SCR_HEIGHT 1080 /** * Set screen resolution to 1024x768 |