├── .gitignore ├── LICENSE ├── README.md ├── bsd ├── Makefile └── README.txt ├── files ├── Smalltalk-80.changes ├── Smalltalk-80.sources └── snapshot.im ├── images └── desktop.png ├── linux ├── Makefile └── README.txt ├── misc ├── README.txt └── imageswapper.c ├── org ├── Smalltalk-80.sources └── VirtualImageLSB ├── osx ├── Makefile ├── MakefileRT └── Smalltalk.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── Smalltalk.xcscheme ├── src ├── bitblt.cpp ├── bitblt.h ├── filesystem.h ├── hal.h ├── interpreter.cpp ├── interpreter.h ├── main.cpp ├── objmemory.cpp ├── objmemory.h ├── oops.h ├── posixfilesystem.h └── realwordmemory.h └── windows ├── SDL2-2.0.12 ├── BUGS.txt ├── COPYING.txt ├── README-SDL.txt ├── README.txt ├── WhatsNew.txt ├── docs │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gesture.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-linux.md │ ├── README-macosx.md │ ├── README-nacl.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-touch.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ └── doxyfile ├── include │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_config.h.cmake │ ├── SDL_config.h.in │ ├── SDL_config_android.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_macosx.h.orig │ ├── SDL_config_minimal.h │ ├── SDL_config_pandora.h │ ├── SDL_config_psp.h │ ├── SDL_config_windows.h │ ├── SDL_config_winrt.h │ ├── SDL_config_wiz.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_egl.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_metal.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_sensor.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_memory.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── SDL_vulkan.h │ ├── begin_code.h │ └── close_code.h └── lib │ ├── x64 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib │ └── x86 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib ├── Smalltalk.sln ├── Smalltalk.vcxproj ├── Smalltalk.vcxproj.filters └── Smalltalk.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/README.md -------------------------------------------------------------------------------- /bsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/bsd/Makefile -------------------------------------------------------------------------------- /bsd/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/bsd/README.txt -------------------------------------------------------------------------------- /files/Smalltalk-80.changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/files/Smalltalk-80.changes -------------------------------------------------------------------------------- /files/Smalltalk-80.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/files/Smalltalk-80.sources -------------------------------------------------------------------------------- /files/snapshot.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/files/snapshot.im -------------------------------------------------------------------------------- /images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/images/desktop.png -------------------------------------------------------------------------------- /linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/linux/Makefile -------------------------------------------------------------------------------- /linux/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/linux/README.txt -------------------------------------------------------------------------------- /misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/misc/README.txt -------------------------------------------------------------------------------- /misc/imageswapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/misc/imageswapper.c -------------------------------------------------------------------------------- /org/Smalltalk-80.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/org/Smalltalk-80.sources -------------------------------------------------------------------------------- /org/VirtualImageLSB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/org/VirtualImageLSB -------------------------------------------------------------------------------- /osx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/osx/Makefile -------------------------------------------------------------------------------- /osx/MakefileRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/osx/MakefileRT -------------------------------------------------------------------------------- /osx/Smalltalk.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/osx/Smalltalk.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /osx/Smalltalk.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/osx/Smalltalk.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /osx/Smalltalk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/osx/Smalltalk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /osx/Smalltalk.xcodeproj/xcshareddata/xcschemes/Smalltalk.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/osx/Smalltalk.xcodeproj/xcshareddata/xcschemes/Smalltalk.xcscheme -------------------------------------------------------------------------------- /src/bitblt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/bitblt.cpp -------------------------------------------------------------------------------- /src/bitblt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/bitblt.h -------------------------------------------------------------------------------- /src/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/filesystem.h -------------------------------------------------------------------------------- /src/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/hal.h -------------------------------------------------------------------------------- /src/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/interpreter.cpp -------------------------------------------------------------------------------- /src/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/interpreter.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/objmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/objmemory.cpp -------------------------------------------------------------------------------- /src/objmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/objmemory.h -------------------------------------------------------------------------------- /src/oops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/oops.h -------------------------------------------------------------------------------- /src/posixfilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/posixfilesystem.h -------------------------------------------------------------------------------- /src/realwordmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/src/realwordmemory.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/BUGS.txt -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/COPYING.txt -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/README-SDL.txt -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/README.txt -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/WhatsNew.txt -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-android.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-cmake.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-directfb.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-dynapi.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-emscripten.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-gesture.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-hg.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-ios.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-linux.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-macosx.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-nacl.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-pandora.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-platforms.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-porting.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-psp.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-touch.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-wince.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-windows.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README-winrt.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/README.md -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/docs/doxyfile -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_assert.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_atomic.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_audio.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_bits.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_blendmode.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_clipboard.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config.h.cmake -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config.h.in -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_android.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_psp.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_windows.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_copying.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_egl.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_endian.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_error.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_events.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_filesystem.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_gesture.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_haptic.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_hints.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_joystick.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_keyboard.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_keycode.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_loadso.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_log.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_main.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_messagebox.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_metal.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_mouse.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_mutex.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_name.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengl.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengles.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengles2.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_pixels.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_platform.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_power.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_quit.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_rect.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_render.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_revision.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_rwops.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_scancode.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_sensor.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_shape.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_stdinc.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_surface.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_system.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_syswm.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_assert.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_common.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_compare.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_font.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_harness.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_images.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_log.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_md5.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_memory.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_test_random.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_thread.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_timer.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_touch.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_types.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_version.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_video.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/SDL_vulkan.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/begin_code.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/include/close_code.h -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /windows/SDL2-2.0.12/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/SDL2-2.0.12/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /windows/Smalltalk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/Smalltalk.sln -------------------------------------------------------------------------------- /windows/Smalltalk.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/Smalltalk.vcxproj -------------------------------------------------------------------------------- /windows/Smalltalk.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/Smalltalk.vcxproj.filters -------------------------------------------------------------------------------- /windows/Smalltalk.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanay/Smalltalk/HEAD/windows/Smalltalk.vcxproj.user --------------------------------------------------------------------------------