diff options
Diffstat (limited to 'src/roms/openbios/forth/testsuite/framebuffer-test.fs')
-rw-r--r-- | src/roms/openbios/forth/testsuite/framebuffer-test.fs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/roms/openbios/forth/testsuite/framebuffer-test.fs b/src/roms/openbios/forth/testsuite/framebuffer-test.fs new file mode 100644 index 0000000..1109932 --- /dev/null +++ b/src/roms/openbios/forth/testsuite/framebuffer-test.fs @@ -0,0 +1,10 @@ + +: test-screen + 10 10 pci-l@ + f0 0 do + dup d# 1280 i * + + 500 i fill + loop + ; + + test-screen |