summaryrefslogtreecommitdiffstats
path: root/memtestEDK/Memtest/SingleComponents/TestScreenbuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'memtestEDK/Memtest/SingleComponents/TestScreenbuffer.c')
-rw-r--r--memtestEDK/Memtest/SingleComponents/TestScreenbuffer.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/memtestEDK/Memtest/SingleComponents/TestScreenbuffer.c b/memtestEDK/Memtest/SingleComponents/TestScreenbuffer.c
deleted file mode 100644
index 3b7d7f2..0000000
--- a/memtestEDK/Memtest/SingleComponents/TestScreenbuffer.c
+++ /dev/null
@@ -1,42 +0,0 @@
-
-#include <Uefi.h>
-#include <Library/UefiLib.h>
-#include <Library/UefiApplicationEntryPoint.h>
-
-#include "screen_buffer.h"
-
-
-EFI_STATUS
-EFIAPI
-UefiMain (
- IN EFI_HANDLE ImageHandle,
- IN EFI_SYSTEM_TABLE *SystemTable
- )
-{
- Print(L"Test for screen_buffer\n\n");
-
- #define SCRN_DEBUG
-
- int y, x;
-
- for (y=0; y < 25; ++y){
- for (x=0; x < 80; ++x){
- set_scrn_buf(y, x, 'a');
- }
- set_scrn_buf(y, 80, '\0');
- }
-
- /*
- char get_scrn_buf(const int y, const int x);
- void set_scrn_buf(const int y, const int x, const char val);
- void tty_print_region(const int pi_top,const int pi_left, const int pi_bottom,const int pi_right);
- void tty_print_line(int y, int x, const char *text);
- void tty_print_screen(void);
- void print_error(char *pstr);
- */
-
- Print(L"Test finished.\n");
-
- return EFI_SUCCESS;
-}
-