From aec906fff3c91c10b48dddc8f8a8b160bb35d0f4 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Wed, 22 Feb 2012 06:37:17 -0500 Subject: [PATCH] SDL test program Initial Import --- mdl/mdltest9.pas | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 mdl/mdltest9.pas diff --git a/mdl/mdltest9.pas b/mdl/mdltest9.pas new file mode 100644 index 0000000..71fef5f --- /dev/null +++ b/mdl/mdltest9.pas @@ -0,0 +1,16 @@ +Program MDLTEST9; + +Uses + m_SDLCRT; + +Var + Console : TSDLConsole; + +Begin + Console := TSDLConsole.Create(Mode_80x25); + + Repeat + Until Console.KeyPressed; + + Console.Free; +End.