├── .gitignore ├── LICENSE ├── README.md ├── lib ├── msys-2.0.dll ├── msys-gcc_s-seh-1.dll └── msys-stdc++-6.dll ├── lib32 ├── libgcc_s_dw2-1.dll ├── libstdc++-6.dll └── libwinpthread-1.dll ├── licenses ├── AddressBook.txt ├── DateBook.txt ├── GamePadDriver.txt ├── Garmin_SDK.txt ├── Lua.txt ├── MemoPad.txt ├── MineHunt.txt ├── PalmOS_SDK.txt ├── SDL2.txt ├── ToDoList.txt ├── custom_malloc.txt ├── darm.txt ├── duktape.txt ├── mingw64.txt ├── mingw64_rt.txt ├── musashi.txt ├── pumpkin_image.txt ├── softfloat.txt ├── stb.txt └── uARM.txt ├── pumpkin.bat ├── pumpkin.sh ├── pumpkin.vbs ├── pumpkin.wine ├── pumpkin32.bat ├── pumpkin_rpi.sh ├── screenshots └── pumpkin.png ├── script ├── pumpkin.lua ├── pumpkin_linux.js ├── pumpkin_linux_s2n.lua └── pumpkin_rpi.lua ├── src ├── AddressBook │ ├── AddrCustom.c │ ├── AddrCustom.h │ ├── AddrDefines.h │ ├── AddrDetails.c │ ├── AddrDetails.h │ ├── AddrDialList.c │ ├── AddrDialList.h │ ├── AddrEdit.c │ ├── AddrEdit.h │ ├── AddrList.c │ ├── AddrList.h │ ├── AddrNote.c │ ├── AddrNote.h │ ├── AddrPrefs.c │ ├── AddrPrefs.h │ ├── AddrTest.def │ ├── AddrTools.c │ ├── AddrTools.h │ ├── AddrView.c │ ├── AddrView.h │ ├── Address.c │ ├── Address.h │ ├── AddressAutoFill.c │ ├── AddressAutoFill.h │ ├── AddressDB.c │ ├── AddressDB.h │ ├── AddressLookup.c │ ├── AddressLookup.h │ ├── AddressRsc.h │ ├── AddressTransfer.c │ ├── AddressTransfer.h │ ├── Makefile │ ├── Makefile.palmos │ ├── SysDebug.c │ ├── SysDebug.h │ ├── crt0.dat │ ├── mkp │ ├── resources │ │ ├── MBAR03e8.dat │ │ ├── MBAR044c.dat │ │ ├── MBAR04b0.dat │ │ ├── Talt07d0.dat │ │ ├── Talt07d1.dat │ │ ├── Talt07d4.dat │ │ ├── Talt07d5.dat │ │ ├── Tbmp06ae.dat │ │ ├── Tbmp0715.dat │ │ ├── fmap03e8.dat │ │ ├── tAIB03e8.dat │ │ ├── tAIB03e9.dat │ │ ├── tAIS03e8.dat │ │ ├── tFRM03e8.dat │ │ ├── tFRM04b0.dat │ │ ├── tFRM0640.dat │ │ ├── tFRM06a4.dat │ │ ├── tFRM0708.dat │ │ ├── tFRM076c.dat │ │ ├── tFRM07d0.dat │ │ ├── tFRM0834.dat │ │ ├── tFRM0898.dat │ │ ├── tFRM08fc.dat │ │ ├── tSTL03e8.dat │ │ ├── tSTL03ec.dat │ │ ├── tSTL03fe.dat │ │ ├── tSTL03ff.dat │ │ ├── tSTR0064.dat │ │ ├── tSTR00c8.dat │ │ ├── tSTR00c9.dat │ │ ├── tSTR00ca.dat │ │ ├── tSTR00cb.dat │ │ ├── tSTR00cc.dat │ │ ├── tSTR03e8.dat │ │ ├── tSTR03e9.dat │ │ ├── tSTR03ea.dat │ │ ├── tSTR03eb.dat │ │ ├── tSTR03ec.dat │ │ ├── tSTR03ed.dat │ │ ├── tSTR03ee.dat │ │ ├── tSTR03ef.dat │ │ ├── tSTR03f0.dat │ │ ├── tSTR04c0.dat │ │ ├── tSTR0648.dat │ │ ├── tSTR08fc.dat │ │ ├── taic03e8.dat │ │ └── tver0001.dat │ └── sec.h ├── BOOT │ ├── 0.pmid │ ├── 1.pmid │ ├── 16x16.txt │ ├── 2.pmid │ ├── 3.pmid │ ├── 3x5.txt │ ├── 4.pmid │ ├── 4x7.txt │ ├── 4x8.txt │ ├── 5.pmid │ ├── 6.pmid │ ├── 6x10.txt │ ├── 8x14.txt │ ├── 8x16.txt │ ├── 8x8.txt │ ├── Makefile │ ├── back_72.bmp │ ├── backw_72.bmp │ ├── boot.rcp │ ├── confirmation_144.bmp │ ├── confirmation_72.bmp │ ├── down_144.bmp │ ├── down_72.bmp │ ├── enter_72.bmp │ ├── enterw_72.bmp │ ├── error_144.bmp │ ├── error_72.bmp │ ├── font_9000_144.txt │ ├── font_9000_72.txt │ ├── font_9001_144.txt │ ├── font_9001_72.txt │ ├── font_9002_144.txt │ ├── font_9002_72.txt │ ├── font_9003_144.txt │ ├── font_9003_72.txt │ ├── font_9004_144.txt │ ├── font_9004_72.txt │ ├── font_9005_144.txt │ ├── font_9005_72.txt │ ├── font_9006_144.txt │ ├── font_9006_72.txt │ ├── font_9007_144.txt │ ├── font_9007_72.txt │ ├── graffiti_144.bmp │ ├── graffiti_72.bmp │ ├── handle_72.bmp │ ├── handlesmall_72.bmp │ ├── information_144.bmp │ ├── information_72.bmp │ ├── logo_144.bmp │ ├── logo_72.bmp │ ├── qrcode_144.bmp │ ├── qrcode_72.bmp │ ├── rampdown_72.bmp │ ├── rampup_72.bmp │ ├── scale_72.bmp │ ├── tAIB.10000 │ ├── tAIB.10001 │ ├── tab_72.bmp │ ├── tabw_72.bmp │ ├── taskbar_144.bmp │ ├── taskbar_72.bmp │ ├── taskbar_high.bmp │ ├── taskbar_low.bmp │ ├── tos4x4.txt │ ├── tos4x8.txt │ ├── tos8x16.txt │ ├── tos8x8.txt │ ├── trigger_144.bmp │ ├── trigger_72.bmp │ ├── up_144.bmp │ ├── up_72.bmp │ ├── warning_144.bmp │ └── warning_72.bmp ├── Command │ ├── Makefile │ ├── command.bmp │ ├── command.c │ ├── command.h │ ├── command.js │ ├── command.lua │ ├── deploy.c │ ├── deploy.h │ ├── file.h │ ├── form.js │ ├── form.lua │ ├── luaH.bmp │ ├── luaL.bmp │ ├── resource.h │ └── resource.rcp ├── DateBook │ ├── DateAgenda.c │ ├── DateAgenda.h │ ├── DateAlarm.c │ ├── DateAlarm.h │ ├── DateDB.c │ ├── DateDB.c.old │ ├── DateDB.h │ ├── DateDay.c │ ├── DateDay.h │ ├── DateDbgPrefix.h │ ├── DateDisplay.c │ ├── DateDisplay.h │ ├── DateGlobals.c │ ├── DateMonth.c │ ├── DateMonth.h │ ├── DatePref.c │ ├── DatePref.h │ ├── DateRelPrefix.h │ ├── DateTransfer.c │ ├── DateTransfer.h │ ├── DateWeek.c │ ├── DateWeek.h │ ├── Datebook.c │ ├── Datebook.h │ ├── DatebookRsc.h │ ├── Makefile │ ├── ToDo.h │ ├── ToDoDB.c │ ├── ToDoDB.h │ ├── debug.h │ ├── record.txt │ ├── resources │ │ ├── MBAR03e8.dat │ │ ├── MBAR03ea.dat │ │ ├── MBAR03eb.dat │ │ ├── MIDI03e7.dat │ │ ├── Talt07d1.dat │ │ ├── Talt07d2.dat │ │ ├── Talt07d6.dat │ │ ├── Talt07d7.dat │ │ ├── Tbmp07d0.dat │ │ ├── Tbmp07d1.dat │ │ ├── Tbmp07d2.dat │ │ ├── Tbmp07d3.dat │ │ ├── Tbmp089a.dat │ │ ├── Tbmp0bb8.dat │ │ ├── tAIB03e8.dat │ │ ├── tAIB03e9.dat │ │ ├── tAIN03e8.dat │ │ ├── tAIS03e8.dat │ │ ├── tFBM07d1.dat │ │ ├── tFRM03e8.dat │ │ ├── tFRM044c.dat │ │ ├── tFRM04b0.dat │ │ ├── tFRM0514.dat │ │ ├── tFRM0578.dat │ │ ├── tFRM05dc.dat │ │ ├── tFRM0640.dat │ │ ├── tFRM06a4.dat │ │ ├── tFRM0708.dat │ │ ├── tFRM076c.dat │ │ ├── tFRM0834.dat │ │ ├── tFRM0898.dat │ │ ├── tSTL0064.dat │ │ ├── tSTL0065.dat │ │ ├── tSTR0064.dat │ │ ├── tSTR0065.dat │ │ ├── tSTR0066.dat │ │ ├── tSTR0067.dat │ │ ├── tSTR0068.dat │ │ ├── tSTR0069.dat │ │ ├── tSTR007e.dat │ │ ├── tSTR007f.dat │ │ ├── tSTR0080.dat │ │ ├── tSTR0081.dat │ │ ├── tSTR0082.dat │ │ ├── tSTR0083.dat │ │ ├── tSTR0084.dat │ │ ├── tSTR0085.dat │ │ ├── tSTR0086.dat │ │ ├── tSTR0087.dat │ │ ├── tSTR0088.dat │ │ ├── tSTR0089.dat │ │ ├── tSTR008a.dat │ │ ├── tSTR008b.dat │ │ ├── tSTR008c.dat │ │ ├── tSTR008d.dat │ │ ├── tSTR008e.dat │ │ ├── tSTR008f.dat │ │ ├── tSTR0090.dat │ │ ├── tSTR0091.dat │ │ ├── tSTR0092.dat │ │ ├── tSTR0093.dat │ │ ├── tSTR0094.dat │ │ ├── tSTR0095.dat │ │ ├── tSTR0096.dat │ │ ├── tSTR0097.dat │ │ ├── tSTR0098.dat │ │ ├── tSTR0099.dat │ │ ├── tSTR009a.dat │ │ ├── tSTR009b.dat │ │ ├── tSTR009c.dat │ │ ├── tSTR03e8.dat │ │ ├── tSTR03e9.dat │ │ ├── tSTR03ea.dat │ │ ├── tSTR03eb.dat │ │ ├── tSTR03ec.dat │ │ ├── tSTR03ed.dat │ │ ├── tSTR03ee.dat │ │ ├── tSTR03ef.dat │ │ ├── tSTR03f0.dat │ │ ├── tSTR03f1.dat │ │ ├── tSTR03f2.dat │ │ ├── tSTR03f3.dat │ │ ├── tSTR03f4.dat │ │ ├── tSTR03fc.dat │ │ ├── tSTR044c.dat │ │ ├── tSTR044d.dat │ │ ├── tSTR044e.dat │ │ ├── tSTR044f.dat │ │ ├── tSTR0450.dat │ │ ├── tSTR0451.dat │ │ ├── tSTR04b0.dat │ │ ├── tSTR0528.dat │ │ ├── tSTR0598.dat │ │ ├── tSTR05e6.dat │ │ ├── tSTR0708.dat │ │ ├── tSTR0714.dat │ │ ├── tSTR0777.dat │ │ ├── tSTR07d1.dat │ │ ├── tSTR07d2.dat │ │ ├── tSTR07d3.dat │ │ ├── tSTR083b.dat │ │ ├── tSTR0899.dat │ │ ├── taic03e8.dat │ │ ├── tint044c.dat │ │ ├── tint0708.dat │ │ └── tver0001.dat │ └── sections.h ├── DateBook2 │ ├── DateAgenda.c │ ├── DateAgenda.h │ ├── DateAlarm.c │ ├── DateAlarm.h │ ├── DateDB.c │ ├── DateDB.h │ ├── DateDay.c │ ├── DateDay.h │ ├── DateDbgPrefix.h │ ├── DateDisplay.c │ ├── DateDisplay.h │ ├── DateGlobals.c │ ├── DateMonth.c │ ├── DateMonth.h │ ├── DatePref.c │ ├── DatePref.h │ ├── DateRelPrefix.h │ ├── DateTransfer.c │ ├── DateTransfer.h │ ├── DateWeek.c │ ├── DateWeek.h │ ├── Datebook.c │ ├── Datebook.h │ ├── DatebookRsc.h │ ├── Makefile │ ├── ToDo.h │ ├── ToDoDB.c │ ├── ToDoDB.h │ └── resources │ │ ├── MBAR03e8.dat │ │ ├── MBAR03ea.dat │ │ ├── MBAR03eb.dat │ │ ├── MIDI03e7.dat │ │ ├── Talt07d1.dat │ │ ├── Talt07d2.dat │ │ ├── Talt07d6.dat │ │ ├── Talt07d7.dat │ │ ├── Tbmp07d0.dat │ │ ├── Tbmp07d1.dat │ │ ├── Tbmp07d2.dat │ │ ├── Tbmp07d3.dat │ │ ├── Tbmp089a.dat │ │ ├── Tbmp0bb8.dat │ │ ├── tAIB03e8.dat │ │ ├── tAIB03e9.dat │ │ ├── tAIN03e8.dat │ │ ├── tAIS03e8.dat │ │ ├── tFBM07d1.dat │ │ ├── tFRM03e8.dat │ │ ├── tFRM044c.dat │ │ ├── tFRM04b0.dat │ │ ├── tFRM0514.dat │ │ ├── tFRM0578.dat │ │ ├── tFRM05dc.dat │ │ ├── tFRM0640.dat │ │ ├── tFRM06a4.dat │ │ ├── tFRM0708.dat │ │ ├── tFRM076c.dat │ │ ├── tFRM0834.dat │ │ ├── tFRM0898.dat │ │ ├── tSTL0064.dat │ │ ├── tSTL0065.dat │ │ ├── tSTR0064.dat │ │ ├── tSTR0065.dat │ │ ├── tSTR0066.dat │ │ ├── tSTR0067.dat │ │ ├── tSTR0068.dat │ │ ├── tSTR0069.dat │ │ ├── tSTR007e.dat │ │ ├── tSTR007f.dat │ │ ├── tSTR0080.dat │ │ ├── tSTR0081.dat │ │ ├── tSTR0082.dat │ │ ├── tSTR0083.dat │ │ ├── tSTR0084.dat │ │ ├── tSTR0085.dat │ │ ├── tSTR0086.dat │ │ ├── tSTR0087.dat │ │ ├── tSTR0088.dat │ │ ├── tSTR0089.dat │ │ ├── tSTR008a.dat │ │ ├── tSTR008b.dat │ │ ├── tSTR008c.dat │ │ ├── tSTR008d.dat │ │ ├── tSTR008e.dat │ │ ├── tSTR008f.dat │ │ ├── tSTR0090.dat │ │ ├── tSTR0091.dat │ │ ├── tSTR0092.dat │ │ ├── tSTR0093.dat │ │ ├── tSTR0094.dat │ │ ├── tSTR0095.dat │ │ ├── tSTR0096.dat │ │ ├── tSTR0097.dat │ │ ├── tSTR0098.dat │ │ ├── tSTR0099.dat │ │ ├── tSTR009a.dat │ │ ├── tSTR009b.dat │ │ ├── tSTR009c.dat │ │ ├── tSTR03e8.dat │ │ ├── tSTR03e9.dat │ │ ├── tSTR03ea.dat │ │ ├── tSTR03eb.dat │ │ ├── tSTR03ec.dat │ │ ├── tSTR03ed.dat │ │ ├── tSTR03ee.dat │ │ ├── tSTR03ef.dat │ │ ├── tSTR03f0.dat │ │ ├── tSTR03f1.dat │ │ ├── tSTR03f2.dat │ │ ├── tSTR03f3.dat │ │ ├── tSTR03f4.dat │ │ ├── tSTR03fc.dat │ │ ├── tSTR044c.dat │ │ ├── tSTR044d.dat │ │ ├── tSTR044e.dat │ │ ├── tSTR044f.dat │ │ ├── tSTR0450.dat │ │ ├── tSTR0451.dat │ │ ├── tSTR04b0.dat │ │ ├── tSTR0528.dat │ │ ├── tSTR0598.dat │ │ ├── tSTR05e6.dat │ │ ├── tSTR0708.dat │ │ ├── tSTR0714.dat │ │ ├── tSTR0777.dat │ │ ├── tSTR07d1.dat │ │ ├── tSTR07d2.dat │ │ ├── tSTR07d3.dat │ │ ├── tSTR083b.dat │ │ ├── tSTR0899.dat │ │ ├── taic03e8.dat │ │ ├── tint044c.dat │ │ ├── tint0708.dat │ │ └── tver0001.dat ├── Edit │ ├── Makefile │ └── edit.c ├── FileBrowserSample │ ├── Makefile │ ├── rsc │ │ ├── SampleApp.rcp │ │ ├── SampleApp_BitmapID1301_1301.bmp │ │ ├── SampleApp_BitmapID1302_1302.bmp │ │ ├── SampleApp_BitmapID1308_1308.bmp │ │ ├── SampleApp_BitmapID1311_1311.bmp │ │ ├── SampleApp_BitmapID1312_1312.bmp │ │ ├── SampleApp_BitmapID1318_1318.bmp │ │ ├── SampleApp_LargeDocument1_1201.bmp │ │ ├── SampleApp_LargeDocument2_1202.bmp │ │ ├── SampleApp_LargeDocument8_1208.bmp │ │ ├── SampleApp__1001.bmp │ │ ├── SampleApp__1002.bmp │ │ ├── SampleApp__1008.bmp │ │ ├── SampleApp__1011.bmp │ │ ├── SampleApp__1012.bmp │ │ ├── SampleApp__1018.bmp │ │ ├── SampleApp__1101.bmp │ │ ├── SampleApp__1102.bmp │ │ ├── SampleApp__1108.bmp │ │ ├── SampleApp__1111.bmp │ │ ├── SampleApp__1112.bmp │ │ ├── SampleApp__1118.bmp │ │ ├── SampleDelete.rcp │ │ ├── SampleDetails.rcp │ │ ├── SampleEdit.rcp │ │ ├── SampleList.rcp │ │ ├── SampleMisc.rcp │ │ └── SamplePrefer.rcp │ └── src │ │ ├── SampleDB.c │ │ ├── SampleDB.h │ │ ├── SampleMain.c │ │ ├── SampleMain.h │ │ ├── SamplePrefix.h │ │ ├── SampleRsc.h │ │ └── SampleTransfer.c ├── HelloWorld │ ├── HelloWorld.c │ ├── HelloWorld.def │ ├── HelloWorld.f90 │ ├── Makefile │ ├── Makefile.fortran │ ├── Makefile.palmos │ ├── PalmOS.f90 │ ├── icon_big.bmp │ ├── icon_small.bmp │ ├── resource.h │ └── resource.rcp ├── Hotsync │ ├── Makefile │ ├── cmp.c │ ├── config.h │ ├── debug.c │ ├── dlp.c │ ├── dummy10.bmp │ ├── error20.bmp │ ├── hotsync.bmp │ ├── hotsync.c │ ├── icon_big.bmp │ ├── inet.c │ ├── md5.c │ ├── net.c │ ├── not │ │ ├── address.c │ │ ├── appinfo.c │ │ ├── blob.c │ │ ├── calendar.c │ │ ├── connect.c │ │ ├── contact.c │ │ ├── datebook.c │ │ ├── expense.c │ │ ├── findme.c │ │ ├── findme.h │ │ ├── hinote.c │ │ ├── location.c │ │ ├── mail.c │ │ ├── memo.c │ │ ├── money.c │ │ ├── notepad.c │ │ ├── palmpix.c │ │ ├── pi-address.h │ │ ├── pi-blob.h │ │ ├── pi-bluetooth.h │ │ ├── pi-calendar.h │ │ ├── pi-contact.h │ │ ├── pi-datebook.h │ │ ├── pi-expense.h │ │ ├── pi-foto.h │ │ ├── pi-header.c │ │ ├── pi-header.h │ │ ├── pi-hinote.h │ │ ├── pi-location.h │ │ ├── pi-mail.h │ │ ├── pi-memo.h │ │ ├── pi-money.h │ │ ├── pi-notepad.h │ │ ├── pi-palmpix.h │ │ ├── pi-todo.h │ │ ├── pi-usb.h │ │ ├── pi-veo.h │ │ ├── pi-versamail.h │ │ ├── plu_args.c │ │ ├── popt.c │ │ ├── popt.h │ │ ├── poptconfig.c │ │ ├── popthelp.c │ │ ├── poptint.h │ │ ├── poptparse.c │ │ ├── todo.c │ │ ├── veo.c │ │ └── versamail.c │ ├── ok20.bmp │ ├── padp.c │ ├── pi-appinfo.h │ ├── pi-args.h │ ├── pi-buffer.c │ ├── pi-buffer.h │ ├── pi-cmp.h │ ├── pi-debug.h │ ├── pi-dlp.h │ ├── pi-error.h │ ├── pi-file.c │ ├── pi-file.h │ ├── pi-inet.h │ ├── pi-macros.h │ ├── pi-md5.h │ ├── pi-net.h │ ├── pi-padp.h │ ├── pi-serial.h │ ├── pi-slp.h │ ├── pi-sockaddr.h │ ├── pi-socket.h │ ├── pi-source.h │ ├── pi-sync.h │ ├── pi-sys.h │ ├── pi-syspkt.h │ ├── pi-threadsafe.h │ ├── pi-userland.h │ ├── pi-util.h │ ├── pi-version.h │ ├── resource.h │ ├── resource.rcp │ ├── serial.c │ ├── slp.c │ ├── socket.c │ ├── srmserial.c │ ├── sys.c │ ├── syspkt.c │ ├── system.h │ ├── tAIB.1000 │ ├── tAIB.1001 │ ├── threadsafe.c │ ├── unixserial.c │ ├── userland.c │ └── utils.c ├── InternalCryptoPlugin │ ├── InternalCryptoPlugin.c │ └── Makefile ├── Japanese │ ├── Makefile │ ├── fontv1_10000.txt │ ├── fontv1_10001.txt │ ├── fontv1_10002.txt │ ├── fontv1_10003.txt │ ├── fontv1_10004.txt │ ├── fontv1_10005.txt │ ├── fontv1_10006.txt │ ├── fontv1_10007.txt │ ├── fontv1_10008.txt │ ├── fontv1_10009.txt │ ├── fontv1_10010.txt │ ├── fontv1_10011.txt │ ├── fontv1_10012.txt │ ├── fontv1_10013.txt │ ├── fontv1_10014.txt │ ├── fontv1_10015.txt │ ├── fontv1_10016.txt │ ├── fontv1_10017.txt │ ├── fontv1_10018.txt │ ├── fontv1_10019.txt │ ├── fontv1_10020.txt │ ├── fontv1_10021.txt │ ├── fontv1_10022.txt │ ├── fontv1_10023.txt │ ├── fontv1_10024.txt │ ├── fontv1_10025.txt │ ├── fontv1_10026.txt │ ├── fontv1_10027.txt │ ├── fontv1_10028.txt │ ├── fontv1_10029.txt │ ├── fontv1_10030.txt │ ├── fontv1_10031.txt │ ├── fontv1_10032.txt │ ├── fontv1_10033.txt │ ├── fontv1_10034.txt │ ├── fontv1_10035.txt │ ├── fontv1_10036.txt │ ├── fontv1_10037.txt │ ├── fontv1_10038.txt │ ├── fontv1_10039.txt │ ├── fontv1_10040.txt │ ├── fontv1_10041.txt │ ├── fontv1_10042.txt │ ├── fontv1_10043.txt │ ├── fontv1_10044.txt │ ├── fontv1_10045.txt │ ├── fontv1_10046.txt │ ├── fontv1_10047.txt │ ├── fontv1_10048.txt │ ├── fontv1_10049.txt │ ├── fontv1_10050.txt │ ├── fontv1_10051.txt │ ├── fontv1_10052.txt │ ├── fontv1_10053.txt │ ├── fontv1_10054.txt │ ├── fontv1_10055.txt │ ├── fontv1_10056.txt │ ├── fontv1_10057.txt │ ├── fontv1_10058.txt │ ├── fontv1_10059.txt │ ├── fontv1_10060.txt │ ├── fontv1_10061.txt │ ├── fontv1_10062.txt │ ├── fontv1_10063.txt │ ├── fontv1_10064.txt │ ├── fontv1_10065.txt │ ├── fontv1_10066.txt │ ├── fontv1_10067.txt │ ├── fontv1_10068.txt │ ├── fontv1_10069.txt │ ├── fontv1_10070.txt │ ├── fontv1_10071.txt │ ├── fontv1_10072.txt │ ├── fontv1_10073.txt │ ├── fontv1_10074.txt │ ├── fontv1_10075.txt │ ├── fontv1_10076.txt │ ├── fontv1_10077.txt │ ├── fontv1_10078.txt │ ├── fontv1_10079.txt │ ├── fontv1_10080.txt │ ├── fontv1_10081.txt │ ├── fontv1_10082.txt │ ├── fontv1_10083.txt │ ├── fontv1_10084.txt │ ├── fontv1_10085.txt │ ├── fontv1_10086.txt │ ├── fontv1_10087.txt │ ├── fontv1_10088.txt │ ├── fontv1_10089.txt │ ├── fontv1_10090.txt │ ├── fontv1_10091.txt │ ├── fontv1_10092.txt │ ├── fontv1_10093.txt │ ├── fontv1_10094.txt │ ├── fontv1_10095.txt │ ├── fontv1_10100.txt │ ├── fontv1_10101.txt │ ├── fontv1_10102.txt │ ├── fontv1_10103.txt │ ├── fontv1_10200.txt │ ├── fontv1_10201.txt │ ├── fontv1_10202.txt │ ├── fontv1_10203.txt │ ├── fontv1_10204.txt │ ├── fontv1_10205.txt │ ├── fontv1_10206.txt │ ├── fontv1_10207.txt │ ├── fontv1_10208.txt │ ├── fontv1_10209.txt │ ├── fontv1_10210.txt │ ├── fontv1_10211.txt │ ├── fontv1_10212.txt │ ├── fontv1_10213.txt │ ├── fontv1_10214.txt │ ├── fontv1_10215.txt │ ├── fontv1_10216.txt │ ├── fontv1_10217.txt │ ├── fontv1_10218.txt │ ├── fontv1_10219.txt │ ├── fontv1_10220.txt │ ├── fontv1_10221.txt │ ├── fontv1_10222.txt │ ├── fontv1_10223.txt │ ├── fontv1_10224.txt │ ├── fontv1_10225.txt │ ├── fontv1_10226.txt │ ├── fontv1_10227.txt │ ├── fontv1_10228.txt │ ├── fontv1_10229.txt │ ├── fontv1_10230.txt │ ├── fontv1_10231.txt │ ├── fontv1_10232.txt │ ├── fontv1_10233.txt │ ├── fontv1_10234.txt │ ├── fontv1_10235.txt │ ├── fontv1_10236.txt │ ├── fontv1_10237.txt │ ├── fontv1_10238.txt │ ├── fontv1_10239.txt │ ├── fontv1_10240.txt │ ├── fontv1_10241.txt │ ├── fontv1_10242.txt │ ├── fontv1_10243.txt │ ├── fontv1_10244.txt │ ├── fontv1_10245.txt │ ├── fontv1_10246.txt │ ├── fontv1_10247.txt │ ├── fontv1_10248.txt │ ├── fontv1_10249.txt │ ├── fontv1_10250.txt │ ├── fontv1_10251.txt │ ├── fontv1_10252.txt │ ├── fontv1_10253.txt │ ├── fontv1_10254.txt │ ├── fontv1_10255.txt │ ├── fontv1_10256.txt │ ├── fontv1_10257.txt │ ├── fontv1_10258.txt │ ├── fontv1_10259.txt │ ├── fontv1_10260.txt │ ├── fontv1_10261.txt │ ├── fontv1_10262.txt │ ├── fontv1_10263.txt │ ├── fontv1_10264.txt │ ├── fontv1_10265.txt │ ├── fontv1_10266.txt │ ├── fontv1_10267.txt │ ├── fontv1_10268.txt │ ├── fontv1_10269.txt │ ├── fontv1_10270.txt │ ├── fontv1_10271.txt │ ├── fontv1_10272.txt │ ├── fontv1_10273.txt │ ├── fontv1_10274.txt │ ├── fontv1_10275.txt │ ├── fontv1_10276.txt │ ├── fontv1_10277.txt │ ├── fontv1_10278.txt │ ├── fontv1_10279.txt │ ├── fontv1_10280.txt │ ├── fontv1_10281.txt │ ├── fontv1_10282.txt │ ├── fontv1_10283.txt │ ├── fontv1_10284.txt │ ├── fontv1_10285.txt │ ├── fontv1_10286.txt │ ├── fontv1_10287.txt │ ├── fontv1_10288.txt │ ├── fontv1_10289.txt │ ├── fontv1_10290.txt │ ├── fontv1_10291.txt │ ├── fontv1_10292.txt │ ├── fontv1_10293.txt │ ├── fontv1_10294.txt │ ├── fontv1_10295.txt │ ├── fontv1_10300.txt │ ├── fontv1_10301.txt │ ├── fontv1_10302.txt │ ├── fontv1_10303.txt │ ├── japanese.c │ └── resource.rcp ├── JsSyntax │ ├── Makefile │ └── jssyntax.c ├── Launcher │ ├── 68k10.bmp │ ├── 68k20.bmp │ ├── Launcher.c │ ├── Makefile │ ├── dummy10.bmp │ ├── dummy15.bmp │ ├── editbin.c │ ├── editbmp.c │ ├── editform.c │ ├── editreg.c │ ├── editreg.h │ ├── editstr.c │ ├── editsurf.c │ ├── editsurf.h │ ├── error20.bmp │ ├── fakeH.txt │ ├── fakeL.txt │ ├── folder10.bmp │ ├── folder20.bmp │ ├── frmprop30.bmp │ ├── move15.bmp │ ├── move30.bmp │ ├── next15.bmp │ ├── next30.bmp │ ├── objprop30.bmp │ ├── ok20.bmp │ ├── pencil15.bmp │ ├── pencil30.bmp │ ├── picker15.bmp │ ├── picker30.bmp │ ├── previous15.bmp │ ├── previous30.bmp │ ├── pumpkin10.bmp │ ├── pumpkin20.bmp │ ├── question20.bmp │ ├── resedit.h │ ├── resource.h │ ├── resource.rcp │ ├── transp16.bmp │ ├── transp32.bmp │ └── warning20.bmp ├── LuaSyntax │ ├── Makefile │ └── luasyntax.c ├── Makefile ├── MemoPad │ ├── Makefile │ ├── MemoDB.c │ ├── MemoDB.h │ ├── MemoMain.c │ ├── MemoMain.h │ ├── MemoRsc.c │ ├── MemoRsc.h │ ├── MemoTransfer.c │ ├── resources │ │ ├── MBAR03e8.dat │ │ ├── MBAR044c.dat │ │ ├── Talt07d0.dat │ │ ├── tAIB03e8.dat │ │ ├── tAIB03e9.dat │ │ ├── tAIN03e8.dat │ │ ├── tAIS03e8.dat │ │ ├── tFRM03e8.dat │ │ ├── tFRM044c.dat │ │ ├── tFRM04b0.dat │ │ ├── tFRM0578.dat │ │ ├── tFRM0640.dat │ │ ├── tSTR0064.dat │ │ ├── tSTR03e8.dat │ │ ├── tSTR03e9.dat │ │ ├── tSTR03ea.dat │ │ ├── tSTR0458.dat │ │ ├── tSTR04bb.dat │ │ ├── tSTR0587.dat │ │ ├── tSTR0648.dat │ │ ├── taic03e8.dat │ │ └── tver0001.dat │ └── sections.h ├── MineHunt │ ├── Makefile │ ├── Mine.h │ ├── MineApp.c │ ├── MineRsc.h │ ├── bmp │ │ ├── AppIcon_Large-1.bmp │ │ ├── AppIcon_Large-2.bmp │ │ ├── AppIcon_Large-8.bmp │ │ ├── AppIcon_Large-X2-1.bmp │ │ ├── AppIcon_Large-X2-2.bmp │ │ ├── AppIcon_Large-X2-8.bmp │ │ ├── AppIcon_Small-1.bmp │ │ ├── AppIcon_Small-2.bmp │ │ ├── AppIcon_Small-8.bmp │ │ ├── AppIcon_Small-X2-1.bmp │ │ ├── AppIcon_Small-X2-2.bmp │ │ ├── AppIcon_Small-X2-8.bmp │ │ ├── Bitmap_2001-1.bmp │ │ ├── Bitmap_2001-2.bmp │ │ ├── Bitmap_2001-8.bmp │ │ ├── Bitmap_2001-X2-1.bmp │ │ ├── Bitmap_2001-X2-2.bmp │ │ ├── Bitmap_2001-X2-8.bmp │ │ ├── Bitmap_2002-1.bmp │ │ ├── Bitmap_2002-2.bmp │ │ ├── Bitmap_2002-8.bmp │ │ ├── Bitmap_2002-X2-1.bmp │ │ ├── Bitmap_2002-X2-2.bmp │ │ ├── Bitmap_2002-X2-8.bmp │ │ ├── Bitmap_2003-1.bmp │ │ ├── Bitmap_2003-2.bmp │ │ ├── Bitmap_2003-8.bmp │ │ ├── Bitmap_2003-X2-1.bmp │ │ ├── Bitmap_2003-X2-2.bmp │ │ ├── Bitmap_2003-X2-8.bmp │ │ ├── Bitmap_2004-1.bmp │ │ ├── Bitmap_2004-2.bmp │ │ ├── Bitmap_2004-8.bmp │ │ ├── Bitmap_2004-X2-1.bmp │ │ ├── Bitmap_2004-X2-2.bmp │ │ ├── Bitmap_2004-X2-8.bmp │ │ ├── Bitmap_2005-1.bmp │ │ ├── Bitmap_2005-2.bmp │ │ ├── Bitmap_2005-8.bmp │ │ ├── Bitmap_2005-X2-1.bmp │ │ ├── Bitmap_2005-X2-2.bmp │ │ ├── Bitmap_2005-X2-8.bmp │ │ ├── Bitmap_2006-1.bmp │ │ ├── Bitmap_2006-X2-1.bmp │ │ ├── Bitmap_2102-1.bmp │ │ ├── Bitmap_2102-X2-1.bmp │ │ ├── Bitmap_2103-1.bmp │ │ ├── Bitmap_2103-X2-1.bmp │ │ ├── Bitmap_2104-1.bmp │ │ ├── Bitmap_2104-X2-1.bmp │ │ ├── Bitmap_2105-1.bmp │ │ └── Bitmap_2105-X2-1.bmp │ └── resource.rcp ├── MinimalZig │ ├── Makefile │ ├── build.zig │ ├── main.zig │ ├── resource.rcp │ ├── zig-logo.bmp │ ├── zigh.bmp │ └── zigl.bmp ├── PalmOS │ ├── BuildDefaults.h │ ├── BuildDefines.h │ ├── Core │ │ ├── CoreTraps.h │ │ ├── Hardware │ │ │ ├── HAL.h │ │ │ ├── HwrMiscFlags.h │ │ │ └── M68KHwr.h │ │ ├── System │ │ │ ├── AlarmMgr.h │ │ │ ├── AppLaunchCmd.h │ │ │ ├── Bitmap.h │ │ │ ├── CMCommon.h │ │ │ ├── CMLConst.h │ │ │ ├── CTP.h │ │ │ ├── CharAttr.h │ │ │ ├── CharGB.h │ │ │ ├── CharLatin.h │ │ │ ├── CharShiftJIS.h │ │ │ ├── Chars.h │ │ │ ├── ConnectionMgr.h │ │ │ ├── ConsoleMgr.h │ │ │ ├── Crc.h │ │ │ ├── DLCommon.h │ │ │ ├── DLServer.h │ │ │ ├── DataMgr.h │ │ │ ├── DateTime.h │ │ │ ├── DebugMgr.h │ │ │ ├── Encrypt.h │ │ │ ├── ErrorBase.h │ │ │ ├── ErrorMgr.h │ │ │ ├── ExgLib.h │ │ │ ├── ExgMgr.h │ │ │ ├── FeatureMgr.h │ │ │ ├── FileStream.h │ │ │ ├── FixedMath.h │ │ │ ├── FloatMgr.h │ │ │ ├── Font.h │ │ │ ├── Graffiti.h │ │ │ ├── Helper.h │ │ │ ├── HelperServiceClass.h │ │ │ ├── HostControl.h │ │ │ ├── IMCUtils.h │ │ │ ├── IntlMgr.h │ │ │ ├── IrLib.h │ │ │ ├── KeyMgr.h │ │ │ ├── LocaleMgr.h │ │ │ ├── Localize.h │ │ │ ├── MemoryMgr.h │ │ │ ├── ModemMgr.h │ │ │ ├── NetBitUtils.h │ │ │ ├── NetMgr.h │ │ │ ├── NotifyMgr.h │ │ │ ├── OverlayMgr.h │ │ │ ├── PalmLocRawData.h │ │ │ ├── PalmLocale.h │ │ │ ├── Password.h │ │ │ ├── PceNativeCall.h │ │ │ ├── PenInputMgr.h │ │ │ ├── PenMgr.h │ │ │ ├── Preferences.h │ │ │ ├── Rect.h │ │ │ ├── ScriptPlugin.h │ │ │ ├── SerialDrvr.h │ │ │ ├── SerialLinkMgr.h │ │ │ ├── SerialMgr.h │ │ │ ├── SerialMgrOld.h │ │ │ ├── SerialSdrv.h │ │ │ ├── SerialVdrv.h │ │ │ ├── SoundMgr.h │ │ │ ├── StdIOPalm.h │ │ │ ├── StdIOProvider.h │ │ │ ├── StringMgr.h │ │ │ ├── SysEvent.h │ │ │ ├── SysEvtMgr.h │ │ │ ├── SysResTypes.rh │ │ │ ├── SysUtils.h │ │ │ ├── SystemMgr.h │ │ │ ├── SystemPkt.h │ │ │ ├── SystemPublic.h │ │ │ ├── SystemResources.h │ │ │ ├── TextMgr.h │ │ │ ├── TextServicesMgr.h │ │ │ ├── TimeMgr.h │ │ │ ├── TraceMgr.h │ │ │ ├── UDAMgr.h │ │ │ └── Window.h │ │ └── UI │ │ │ ├── AboutBox.h │ │ │ ├── AttentionMgr.h │ │ │ ├── Category.h │ │ │ ├── Clipboard.h │ │ │ ├── Control.h │ │ │ ├── Day.h │ │ │ ├── Event.h │ │ │ ├── FatalAlert.h │ │ │ ├── Field.h │ │ │ ├── Find.h │ │ │ ├── FontSelect.h │ │ │ ├── Form.h │ │ │ ├── GraffitiReference.h │ │ │ ├── GraffitiShift.h │ │ │ ├── InsPoint.h │ │ │ ├── Keyboard.h │ │ │ ├── Launcher.h │ │ │ ├── List.h │ │ │ ├── Menu.h │ │ │ ├── PhoneLookup.h │ │ │ ├── PrivateRecords.h │ │ │ ├── Progress.h │ │ │ ├── ScrollBar.h │ │ │ ├── SelDay.h │ │ │ ├── SelTime.h │ │ │ ├── SelTimeZone.h │ │ │ ├── Table.h │ │ │ ├── UIColor.h │ │ │ ├── UIControls.h │ │ │ ├── UIPublic.h │ │ │ ├── UIResDefs.r │ │ │ └── UIResources.h │ ├── Dynamic │ │ ├── PalmOptErrorCheckLevel.h │ │ ├── PalmOptModel.h │ │ ├── PalmOptTraceLevel.h │ │ ├── PalmOptUserMode.h │ │ └── PalmSpecifyOptLevel.h │ ├── Extensions │ │ ├── Bluetooth │ │ │ ├── BtCommVdrv.h │ │ │ ├── BtExgLib.h │ │ │ ├── BtLib.h │ │ │ ├── BtLibTypes.h │ │ │ └── BtPrefsPnlTypes.h │ │ └── ExpansionMgr │ │ │ ├── ExpansionMgr.h │ │ │ ├── FSLib.h │ │ │ ├── SlotDrvrLib.h │ │ │ └── VFSMgr.h │ ├── Garmin │ │ ├── GPSLib.h │ │ ├── GPSLib68K.h │ │ ├── GPSLibSysTrapNums.h │ │ ├── Garmin.h │ │ ├── GarminChars.h │ │ ├── PenInputMgr.h │ │ ├── PenInputMgrCommon.h │ │ ├── PenInputMgrSelectorNums.h │ │ ├── PwrMgrLib.h │ │ ├── PwrMgrLib68K.h │ │ ├── PwrMgrLibSysTrapNums.h │ │ ├── QueAPI.h │ │ └── QueApiTypes.h │ ├── Libraries │ │ ├── CPMLib │ │ │ ├── CPMLib.h │ │ │ ├── CPMLib68KInterface.h │ │ │ └── CPMLibCommon.h │ │ ├── INet │ │ │ └── INetMgr.h │ │ ├── LibTraps.h │ │ ├── PalmOSGlue │ │ │ ├── BmpGlue.h │ │ │ ├── CtlGlue.h │ │ │ ├── DateGlue.h │ │ │ ├── FldGlue.h │ │ │ ├── FntGlue.h │ │ │ ├── FrmGlue.h │ │ │ ├── IntlGlue.h │ │ │ ├── LmGlue.h │ │ │ ├── LstGlue.h │ │ │ ├── MemGlue.h │ │ │ ├── OmGlue.h │ │ │ ├── PalmOSGlue.h │ │ │ ├── ResGlue.h │ │ │ ├── SysGlue.h │ │ │ ├── TblGlue.h │ │ │ ├── TsmGlue.h │ │ │ ├── TxtGlue.h │ │ │ ├── UIColorGlue.h │ │ │ └── WinGlue.h │ │ ├── Pdi │ │ │ ├── PdiConst.h │ │ │ └── PdiLib.h │ │ └── SSL │ │ │ ├── SslLib.h │ │ │ ├── SslLibAsn1.h │ │ │ └── SslLibMac.h │ ├── PalmCompatibility.h │ ├── PalmOS.h │ ├── PalmOne │ │ ├── 68K │ │ │ ├── Hs.h │ │ │ ├── Libraries │ │ │ │ ├── Audio │ │ │ │ │ ├── PalmAudioPlayback.h │ │ │ │ │ ├── PalmSoundCustomCtrl.h │ │ │ │ │ └── PalmSoundMgrExt.h │ │ │ │ ├── Camera │ │ │ │ │ └── CameraLib.h │ │ │ │ ├── CameraMgr │ │ │ │ │ ├── palmOneCamera.h │ │ │ │ │ └── palmOneCameraSlider.h │ │ │ │ ├── CarrierCustomLib │ │ │ │ │ ├── CarrierCustomLib.h │ │ │ │ │ ├── CarrierCustomLibErr.h │ │ │ │ │ ├── CarrierCustomLibTraps.h │ │ │ │ │ └── CarrierCustomLibTypes.h │ │ │ │ ├── CodecPluginMgr │ │ │ │ │ └── palmOneCodecPluginMgr.h │ │ │ │ ├── DefaultHelperLibrary │ │ │ │ │ └── DefaultHelperLib.h │ │ │ │ ├── Imaging │ │ │ │ │ ├── ImageLib.h │ │ │ │ │ ├── PalmPhoto.h │ │ │ │ │ └── palmOnePhoto.h │ │ │ │ ├── Locs │ │ │ │ │ └── LocsLib.h │ │ │ │ ├── NetMaster │ │ │ │ │ ├── NetMasterLibTypes.h │ │ │ │ │ └── NetMasterLibrary.h │ │ │ │ ├── NetPref │ │ │ │ │ ├── NetPrefLibFieldInfoTable.h │ │ │ │ │ ├── NetPrefLibTypes.h │ │ │ │ │ └── NetPrefLibrary.h │ │ │ │ ├── Network │ │ │ │ │ ├── PalmNetServices.h │ │ │ │ │ ├── PalmVPPI.h │ │ │ │ │ ├── PalmWPPI.h │ │ │ │ │ └── PalmWiFiCommon.h │ │ │ │ ├── PmConnectorLib │ │ │ │ │ └── PmConnectorLib.h │ │ │ │ ├── PmKeyLib │ │ │ │ │ └── PmKeyLib.h │ │ │ │ ├── SmartTextEngine │ │ │ │ │ └── SmartTextEngine.h │ │ │ │ ├── SndFileStream │ │ │ │ │ └── palmOneSndFileStream.h │ │ │ │ ├── Telephony │ │ │ │ │ ├── HsPhone.h │ │ │ │ │ ├── HsPhoneAudio.h │ │ │ │ │ ├── HsPhoneCDMA.h │ │ │ │ │ ├── HsPhoneGSM.h │ │ │ │ │ ├── HsPhoneIOTA.h │ │ │ │ │ ├── HsPhoneLibrary.h │ │ │ │ │ ├── HsPhoneMisc.h │ │ │ │ │ ├── HsPhoneNetwork.h │ │ │ │ │ ├── HsPhonePower.h │ │ │ │ │ ├── HsPhoneSMS.h │ │ │ │ │ └── HsPhoneSecurity.h │ │ │ │ ├── TonesLibrary │ │ │ │ │ └── TonesLib.h │ │ │ │ ├── TransparencyLibrary │ │ │ │ │ └── TransparencyLib.h │ │ │ │ ├── VMFont │ │ │ │ │ └── palmOneVMFontLib.h │ │ │ │ ├── address │ │ │ │ │ ├── 1.0.1 │ │ │ │ │ │ └── pub │ │ │ │ │ │ │ └── Contacts.h │ │ │ │ │ └── 2.0 │ │ │ │ │ │ └── pub │ │ │ │ │ │ └── Contacts.h │ │ │ │ ├── favoritesdblibrary │ │ │ │ │ └── FavoritesDBLib.h │ │ │ │ ├── filebrowser │ │ │ │ │ └── FileBrowserLib68K.h │ │ │ │ ├── hirestimerlib │ │ │ │ │ └── palmOneHiResTimer.h │ │ │ │ ├── hssoundlib │ │ │ │ │ └── HsSoundLib.h │ │ │ │ ├── htmllib │ │ │ │ │ ├── HtmlLib68K.h │ │ │ │ │ └── HtmlLibTrap.h │ │ │ │ ├── http │ │ │ │ │ └── HS_HTTPLib68K.h │ │ │ │ ├── lcdoverlaylib │ │ │ │ │ └── palmOneLcdOverlay.h │ │ │ │ ├── pmsysgadgetlib │ │ │ │ │ └── PmSysGadgetLib.h │ │ │ │ └── pmuiutillib │ │ │ │ │ └── PmUIUtilLib.h │ │ │ └── System │ │ │ │ ├── FarCall.h │ │ │ │ ├── HardwareUtils68K.h │ │ │ │ ├── HsExgMgr.h │ │ │ │ ├── HsExt.h │ │ │ │ ├── HsExtKbdUtils.h │ │ │ │ ├── HsExtTraps.h │ │ │ │ ├── HsExtUtilBigButton.h │ │ │ │ ├── HsHelper.h │ │ │ │ ├── HsNav.h │ │ │ │ ├── PalmBGService.h │ │ │ │ ├── PalmDisplayExtent.h │ │ │ │ ├── PalmErrorBase.h │ │ │ │ ├── PalmGoLCD.h │ │ │ │ ├── PalmHiResTime.h │ │ │ │ ├── PalmLED.h │ │ │ │ ├── PalmLaunchCodes.h │ │ │ │ ├── PalmLcdOverlay.h │ │ │ │ ├── PalmNative.h │ │ │ │ ├── PalmPin.h │ │ │ │ ├── PalmPower.h │ │ │ │ ├── PalmResources.h │ │ │ │ ├── PalmStatusBar.h │ │ │ │ ├── PalmVMLaunch.h │ │ │ │ ├── PalmVMPlugin.h │ │ │ │ ├── PmPalmOSNVFS.h │ │ │ │ ├── Slider.h │ │ │ │ ├── palmOneChars.h │ │ │ │ ├── palmOneNavigator.h │ │ │ │ └── palmOneStatusBar.h │ │ ├── Common │ │ │ ├── HsCommon.h │ │ │ ├── Libraries │ │ │ │ ├── Camera │ │ │ │ │ └── CameraLibCommon.h │ │ │ │ ├── CameraMgr │ │ │ │ │ └── palmOneCameraCommon.h │ │ │ │ ├── CodecPluginMgr │ │ │ │ │ ├── palmOneCodecFormat.h │ │ │ │ │ └── palmOneCodecPluginMgrCommon.h │ │ │ │ ├── ComChannelProvider │ │ │ │ │ └── ComChannelProviderTypes.h │ │ │ │ ├── DateBook │ │ │ │ │ └── DatebookLibCommon.h │ │ │ │ ├── DefaultHelperLibrary │ │ │ │ │ └── DefaultHelperLibTypes.h │ │ │ │ ├── FavoritesDBLibrary │ │ │ │ │ └── FavoritesDBLibTypes.h │ │ │ │ ├── HTTP │ │ │ │ │ ├── HS_HTTPLibApp.h │ │ │ │ │ └── HS_HTTPLibConst.h │ │ │ │ ├── HiResTimeLib │ │ │ │ │ └── palmOneHiResTimerCommon.h │ │ │ │ ├── HsSoundLib │ │ │ │ │ ├── HsSoundLibCommon.h │ │ │ │ │ ├── HsSoundLibTraps.h │ │ │ │ │ └── PmSoundLibAudioGroup.h │ │ │ │ ├── Imaging │ │ │ │ │ ├── ImageLibCommon.h │ │ │ │ │ ├── ImageLibTraps.h │ │ │ │ │ └── palmOnePhotoCommon.h │ │ │ │ ├── LcdOverlayLib │ │ │ │ │ └── palmOneLcdOverlayCommon.h │ │ │ │ ├── Locs │ │ │ │ │ └── LocsLibCommon.h │ │ │ │ ├── LocsLibCommon.h │ │ │ │ ├── MMS │ │ │ │ │ └── MmsHelperCommon.h │ │ │ │ ├── NetMaster │ │ │ │ │ ├── NetMasterLibErrors.h │ │ │ │ │ ├── NetMasterLibTarget.h │ │ │ │ │ └── NetMasterLibTraps.h │ │ │ │ ├── NetPref │ │ │ │ │ ├── NetPrefLibErrors.h │ │ │ │ │ ├── NetPrefLibTarget.h │ │ │ │ │ └── NetPrefLibTraps.h │ │ │ │ ├── PmConnectorLib │ │ │ │ │ └── PmConnectorLibCommon.h │ │ │ │ ├── PmKeyLib │ │ │ │ │ └── PmKeyLibCommon.h │ │ │ │ ├── PmLibErrors.h │ │ │ │ ├── PmSysGadgetLib │ │ │ │ │ ├── PmSysGadgetLibBbutRscCommon.h │ │ │ │ │ └── PmSysGadgetLibCommon.h │ │ │ │ ├── PmUIUtilLib │ │ │ │ │ └── PmUIUtilLibCommon.h │ │ │ │ ├── SmartTextEngine │ │ │ │ │ ├── SmartTextEngineDef.h │ │ │ │ │ ├── SmartTextEngineErrors.h │ │ │ │ │ ├── SmartTextEngineRsc.h │ │ │ │ │ └── SmartTextEngineTraps.h │ │ │ │ ├── Telephony │ │ │ │ │ ├── HsPhoneAudioTypes.h │ │ │ │ │ ├── HsPhoneCDMATypes.h │ │ │ │ │ ├── HsPhoneCallControlTypes.h │ │ │ │ │ ├── HsPhoneErrors.h │ │ │ │ │ ├── HsPhoneEvent.h │ │ │ │ │ ├── HsPhoneGSMTypes.h │ │ │ │ │ ├── HsPhoneIOTATypes.h │ │ │ │ │ ├── HsPhoneMiscTypes.h │ │ │ │ │ ├── HsPhoneNetworkTypes.h │ │ │ │ │ ├── HsPhoneSMSTypes.h │ │ │ │ │ ├── HsPhoneSecurityTypes.h │ │ │ │ │ ├── HsPhoneTrace.h │ │ │ │ │ ├── HsPhoneTraps.h │ │ │ │ │ ├── HsPhoneTypes.h │ │ │ │ │ └── hsPhoneLocationTypes.h │ │ │ │ ├── TonesLibrary │ │ │ │ │ └── TonesLibTypes.h │ │ │ │ ├── TransparencyLibrary │ │ │ │ │ └── TransparencyLibTypes.h │ │ │ │ ├── VMFont │ │ │ │ │ └── VMFontLibCommon.h │ │ │ │ └── filebrowser │ │ │ │ │ └── FileBrowserLibCommon.h │ │ │ └── System │ │ │ │ ├── HsAppLaunchCmd.h │ │ │ │ ├── HsChars.h │ │ │ │ ├── HsCreators.h │ │ │ │ ├── HsErrorClasses.h │ │ │ │ ├── HsErrors.h │ │ │ │ ├── HsExgMgrCommon.h │ │ │ │ ├── HsExtCommon.h │ │ │ │ ├── HsExtUtilBigButtonCommon.h │ │ │ │ ├── HsExtUtilBigButtonRsc.h │ │ │ │ ├── HsKeyCodes.h │ │ │ │ ├── HsKeyCommon.h │ │ │ │ ├── HsKeyTypes.h │ │ │ │ ├── HsNavCommon.h │ │ │ │ ├── PalmCreators.h │ │ │ │ ├── PalmFeatures.h │ │ │ │ ├── PalmGoLCDCommon.h │ │ │ │ ├── PalmShimSettings.h │ │ │ │ ├── palmOneChars.h │ │ │ │ ├── palmOneCreators.h │ │ │ │ ├── palmOneFeatures.h │ │ │ │ ├── palmOneNavigator.h │ │ │ │ ├── palmOneResources.h │ │ │ │ └── palmOneSystemCommon.h │ │ └── palmOne_68K.h │ ├── PalmTypes.h │ └── PalmUtils.h ├── Preferences │ ├── Makefile │ ├── Preferences.c │ ├── egg_high.bmp │ ├── egg_low.bmp │ ├── icon_big.dat │ ├── icon_small.dat │ ├── resource.h │ └── resource.rcp ├── S2nPlugin │ ├── Makefile │ └── S2nPlugin.c ├── ToDoList │ ├── Makefile │ ├── ToDo.c │ ├── ToDo.h │ ├── ToDoDB.c │ ├── ToDoDB.h │ ├── ToDoDbgPrefix.h │ ├── ToDoRelPrefix.h │ ├── ToDoRsc.c │ ├── ToDoRsc.h │ ├── ToDoTransfer.c │ ├── record.txt │ ├── resources │ │ ├── MBAR03e8.dat │ │ ├── Talt07d1.dat │ │ ├── Talt07d2.dat │ │ ├── tAIB03e8.dat │ │ ├── tAIB03e9.dat │ │ ├── tAIN03e8.dat │ │ ├── tAIS03e8.dat │ │ ├── tFRM03e8.dat │ │ ├── tFRM04b0.dat │ │ ├── tFRM0578.dat │ │ ├── tFRM05dc.dat │ │ ├── tFRM0640.dat │ │ ├── tSTR0064.dat │ │ ├── tSTR0065.dat │ │ ├── tSTR03e8.dat │ │ ├── tSTR03e9.dat │ │ ├── tSTR04c6.dat │ │ ├── tSTR0587.dat │ │ ├── tSTR05e4.dat │ │ ├── tSTR0648.dat │ │ ├── taic03e8.dat │ │ └── tver0001.dat │ └── sections.h ├── WebServer │ ├── Makefile │ ├── WebServer.c │ ├── dummy10.bmp │ ├── earth32.bmp │ ├── earth64.bmp │ ├── error20.bmp │ ├── ok20.bmp │ ├── resource.h │ ├── resource.rcp │ └── webserver.lua ├── Widgets │ ├── Makefile │ ├── Widgets.c │ ├── resource.h │ ├── resource.rcp │ ├── widget1.bmp │ └── widget2.bmp ├── app.mak ├── common.mak ├── commonp.mak ├── duktape │ ├── AUTHORS.rst │ ├── LICENSE.txt │ ├── Makefile │ ├── README.rst │ ├── duk-v1-compat │ │ ├── README.rst │ │ ├── duk_v1_compat.c │ │ └── duk_v1_compat.h │ ├── duk.sh │ ├── duk_alloc_default.c │ ├── duk_api_buffer.c │ ├── duk_api_bytecode.c │ ├── duk_api_call.c │ ├── duk_api_codec.c │ ├── duk_api_compile.c │ ├── duk_api_debug.c │ ├── duk_api_heap.c │ ├── duk_api_inspect.c │ ├── duk_api_internal.h │ ├── duk_api_memory.c │ ├── duk_api_object.c │ ├── duk_api_random.c │ ├── duk_api_stack.c │ ├── duk_api_string.c │ ├── duk_api_time.c │ ├── duk_bi_array.c │ ├── duk_bi_boolean.c │ ├── duk_bi_buffer.c │ ├── duk_bi_date.c │ ├── duk_bi_date_unix.c │ ├── duk_bi_date_windows.c │ ├── duk_bi_duktape.c │ ├── duk_bi_encoding.c │ ├── duk_bi_error.c │ ├── duk_bi_function.c │ ├── duk_bi_global.c │ ├── duk_bi_json.c │ ├── duk_bi_math.c │ ├── duk_bi_number.c │ ├── duk_bi_object.c │ ├── duk_bi_performance.c │ ├── duk_bi_pointer.c │ ├── duk_bi_promise.c │ ├── duk_bi_protos.h │ ├── duk_bi_proxy.c │ ├── duk_bi_reflect.c │ ├── duk_bi_regexp.c │ ├── duk_bi_string.c │ ├── duk_bi_symbol.c │ ├── duk_bi_thread.c │ ├── duk_bi_thrower.c │ ├── duk_builtins.c │ ├── duk_builtins.h │ ├── duk_cmdline.c │ ├── duk_cmdline.h │ ├── duk_config.h │ ├── duk_dblunion.h │ ├── duk_debug.h │ ├── duk_debug_fixedbuffer.c │ ├── duk_debug_macros.c │ ├── duk_debug_vsnprintf.c │ ├── duk_debugger.c │ ├── duk_debugger.h │ ├── duk_error.h │ ├── duk_error_augment.c │ ├── duk_error_longjmp.c │ ├── duk_error_macros.c │ ├── duk_error_misc.c │ ├── duk_error_throw.c │ ├── duk_exception.h │ ├── duk_forwdecl.h │ ├── duk_harray.h │ ├── duk_hboundfunc.h │ ├── duk_hbuffer.h │ ├── duk_hbuffer_alloc.c │ ├── duk_hbuffer_ops.c │ ├── duk_hbufobj.h │ ├── duk_hbufobj_misc.c │ ├── duk_hcompfunc.h │ ├── duk_heap.h │ ├── duk_heap_alloc.c │ ├── duk_heap_finalize.c │ ├── duk_heap_hashstring.c │ ├── duk_heap_markandsweep.c │ ├── duk_heap_memory.c │ ├── duk_heap_misc.c │ ├── duk_heap_refcount.c │ ├── duk_heap_stringcache.c │ ├── duk_heap_stringtable.c │ ├── duk_heaphdr.h │ ├── duk_henv.h │ ├── duk_hnatfunc.h │ ├── duk_hobject.h │ ├── duk_hobject_alloc.c │ ├── duk_hobject_class.c │ ├── duk_hobject_enum.c │ ├── duk_hobject_misc.c │ ├── duk_hobject_pc2line.c │ ├── duk_hobject_props.c │ ├── duk_hproxy.h │ ├── duk_hstring.h │ ├── duk_hstring_misc.c │ ├── duk_hthread.h │ ├── duk_hthread_alloc.c │ ├── duk_hthread_builtins.c │ ├── duk_hthread_misc.c │ ├── duk_hthread_stacks.c │ ├── duk_internal.h │ ├── duk_jmpbuf.h │ ├── duk_js.h │ ├── duk_js_arith.c │ ├── duk_js_bytecode.h │ ├── duk_js_call.c │ ├── duk_js_compiler.c │ ├── duk_js_compiler.h │ ├── duk_js_executor.c │ ├── duk_js_ops.c │ ├── duk_js_var.c │ ├── duk_json.h │ ├── duk_lexer.c │ ├── duk_lexer.h │ ├── duk_numconv.c │ ├── duk_numconv.h │ ├── duk_refcount.h │ ├── duk_regexp.h │ ├── duk_regexp_compiler.c │ ├── duk_regexp_executor.c │ ├── duk_replacements.c │ ├── duk_replacements.h │ ├── duk_selftest.c │ ├── duk_selftest.h │ ├── duk_strings.h │ ├── duk_tval.c │ ├── duk_tval.h │ ├── duk_unicode.h │ ├── duk_unicode_support.c │ ├── duk_unicode_tables.c │ ├── duk_util.h │ ├── duk_util_bitdecoder.c │ ├── duk_util_bitencoder.c │ ├── duk_util_bufwriter.c │ ├── duk_util_cast.c │ ├── duk_util_double.c │ ├── duk_util_hashbytes.c │ ├── duk_util_memory.c │ ├── duk_util_misc.c │ ├── duk_util_tinyrandom.c │ ├── duktape.h │ ├── licenses │ │ ├── commonjs.txt │ │ ├── lua.txt │ │ ├── murmurhash2.txt │ │ ├── splitmix64.txt │ │ └── xoroshiro128plus.txt │ └── script_js.c ├── emscripten │ ├── Makefile │ ├── coi-serviceworker.js │ ├── main.c │ ├── server.sh │ ├── template.html │ └── vfs │ │ ├── app_install │ │ └── .empty │ │ └── pumpkin.lua ├── font │ ├── font10x16.h │ ├── font12x16coco.h │ ├── font16x16.h │ ├── font16x16cp437.h │ ├── font5x8.h │ ├── font6x8apple.h │ ├── font6x8coco.h │ ├── font8x16cp437.h │ ├── font8x8.h │ ├── font8x8zx81.h │ ├── palm2pfont.c │ └── pfont.h ├── forc │ ├── Makefile │ ├── assembler.c │ ├── assembler.h │ ├── buffer.c │ ├── buffer.h │ ├── error.h │ ├── findargs.c │ ├── findargs.h │ ├── forc.c │ ├── heap.c │ ├── heap.h │ ├── ht.c │ ├── ht.h │ ├── lexer.c │ ├── lexer.h │ ├── linker.c │ ├── linker.h │ ├── parser.c │ ├── parser.h │ ├── resource.h │ ├── resource.rcp │ ├── run.c │ ├── run.h │ ├── section.c │ ├── section.h │ ├── symbol.h │ ├── type.c │ └── type.h ├── jpeg-8d │ ├── Makefile │ ├── README │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── ckconfig.c │ ├── example.c │ ├── filelist.txt │ ├── install.txt │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.bcc │ ├── jconfig.cfg │ ├── jconfig.h │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.txt │ ├── jconfig.vc │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.txt │ ├── makcjpeg.st │ ├── makdjpeg.st │ ├── makefile.ansi │ ├── makefile.bcc │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makeproj.mac │ ├── makljpeg.st │ ├── maktjpeg.st │ ├── makvms.opt │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── stamp-h1 │ ├── structure.txt │ ├── transupp.c │ ├── transupp.h │ ├── usage.txt │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── kernel │ ├── Makefile │ ├── boot.S │ ├── disk.c │ ├── disk.h │ ├── diskbin.txt │ ├── float │ │ ├── Makefile │ │ ├── addtf3.c │ │ ├── ashlti3.c │ │ ├── clzti2.c │ │ ├── comparetf2.c │ │ ├── divtf3.c │ │ ├── eprintf.c │ │ ├── extenddftf2.c │ │ ├── extendhftf2.c │ │ ├── extendsftf2.c │ │ ├── fixtfdi.c │ │ ├── fixtfsi.c │ │ ├── fixtfti.c │ │ ├── fixunstfdi.c │ │ ├── fixunstfsi.c │ │ ├── fixunstfti.c │ │ ├── floatditf.c │ │ ├── floatsitf.c │ │ ├── floatunditf.c │ │ ├── floatunsitf.c │ │ ├── fp_add_impl.inc │ │ ├── fp_div_impl.inc │ │ ├── fp_extend.h │ │ ├── fp_extend_impl.inc │ │ ├── fp_fixint_impl.inc │ │ ├── fp_fixuint_impl.inc │ │ ├── fp_lib.h │ │ ├── fp_mode.c │ │ ├── fp_mode.h │ │ ├── fp_mul_impl.inc │ │ ├── fp_trunc.h │ │ ├── fp_trunc_impl.inc │ │ ├── int_endianness.h │ │ ├── int_lib.h │ │ ├── int_math.h │ │ ├── int_types.h │ │ ├── int_util.c │ │ ├── int_util.h │ │ ├── lshrti3.c │ │ ├── multf3.c │ │ ├── powitf2.c │ │ ├── subtf3.c │ │ ├── trunctfdf2.c │ │ ├── trunctfhf2.c │ │ └── trunctfsf2.c │ ├── kernel.txt │ ├── link.ld │ ├── main.c │ └── script.c ├── lib.mak ├── libaalsa │ ├── Makefile │ └── libaalsa.c ├── libapipewire │ ├── Makefile │ └── libapipewire.c ├── libapulse │ ├── Makefile │ └── libapulse.c ├── libbcm2835 │ ├── Makefile │ ├── bcm2835.c │ └── bcm2835.h ├── libchipmunk │ ├── Makefile │ ├── chipmunk.c │ ├── chipmunk │ │ ├── chipmunk.h │ │ ├── chipmunk_ffi.h │ │ ├── chipmunk_private.h │ │ ├── chipmunk_structs.h │ │ ├── chipmunk_types.h │ │ ├── chipmunk_unsafe.h │ │ ├── cpArbiter.h │ │ ├── cpBB.h │ │ ├── cpBody.h │ │ ├── cpConstraint.h │ │ ├── cpDampedRotarySpring.h │ │ ├── cpDampedSpring.h │ │ ├── cpGearJoint.h │ │ ├── cpGrooveJoint.h │ │ ├── cpHastySpace.h │ │ ├── cpMarch.h │ │ ├── cpPinJoint.h │ │ ├── cpPivotJoint.h │ │ ├── cpPolyShape.h │ │ ├── cpPolyline.h │ │ ├── cpRatchetJoint.h │ │ ├── cpRobust.h │ │ ├── cpRotaryLimitJoint.h │ │ ├── cpShape.h │ │ ├── cpSimpleMotor.h │ │ ├── cpSlideJoint.h │ │ ├── cpSpace.h │ │ ├── cpSpatialIndex.h │ │ ├── cpTransform.h │ │ └── cpVect.h │ ├── cpArbiter.c │ ├── cpArray.c │ ├── cpBBTree.c │ ├── cpBody.c │ ├── cpCollision.c │ ├── cpConstraint.c │ ├── cpDampedRotarySpring.c │ ├── cpDampedSpring.c │ ├── cpGearJoint.c │ ├── cpGrooveJoint.c │ ├── cpHashSet.c │ ├── cpHastySpace.c │ ├── cpMarch.c │ ├── cpPinJoint.c │ ├── cpPivotJoint.c │ ├── cpPolyShape.c │ ├── cpPolyline.c │ ├── cpRatchetJoint.c │ ├── cpRobust.c │ ├── cpRotaryLimitJoint.c │ ├── cpShape.c │ ├── cpSimpleMotor.c │ ├── cpSlideJoint.c │ ├── cpSpace.c │ ├── cpSpaceComponent.c │ ├── cpSpaceDebug.c │ ├── cpSpaceHash.c │ ├── cpSpaceQuery.c │ ├── cpSpaceStep.c │ ├── cpSpatialIndex.c │ ├── cpSweep1D.c │ ├── prime.h │ └── space.zig ├── libemulation │ ├── 12x22.txt │ ├── 4x6.txt │ ├── 5x9.txt │ ├── 8086tiny.c │ ├── 8086tiny.c.bak │ ├── 8086tiny_orig.c │ ├── 8086tinyc.c │ ├── 8x8apple.txt │ ├── Makefile │ ├── Makefile.c8086 │ ├── apple2.c │ ├── apple2.h │ ├── asm │ │ ├── Makefile │ │ ├── basic.asm │ │ ├── bios.asm │ │ ├── biosdr.asm │ │ ├── boot.asm │ │ ├── bootdr.asm │ │ ├── bye.asm │ │ ├── cdisk.inc │ │ ├── cls.asm │ │ ├── color.asm │ │ ├── cpm.asm │ │ ├── cterm.inc │ │ ├── disk.h │ │ ├── disk1.dsk │ │ ├── dr.inc │ │ ├── floppy.inc │ │ ├── hd.inc │ │ ├── i2cz80.asm │ │ ├── invaders.asm │ │ ├── io.inc │ │ ├── memory.inc │ │ ├── mkarray.c │ │ ├── mkdisk.c │ │ ├── mkdisk0h.c │ │ ├── mkhd.c │ │ ├── not │ │ │ ├── SARGON.COM │ │ │ ├── VI.COM │ │ │ ├── XMODEM.COM │ │ │ └── ZEXALL.COM │ │ ├── patch.asm │ │ ├── patchqt.c │ │ ├── qp.asm │ │ ├── sprite.asm │ │ ├── term.asm │ │ ├── term2.asm │ │ └── tpa │ │ │ ├── ASM.COM │ │ │ ├── BBCBASIC.COM │ │ │ ├── DDT.COM │ │ │ ├── DSKMAINT.COM │ │ │ ├── DUMP.COM │ │ │ ├── ED.COM │ │ │ ├── LOAD.COM │ │ │ ├── MBASIC.COM │ │ │ ├── MLOAD.HEX │ │ │ ├── PIP.COM │ │ │ ├── QTERM.COM │ │ │ ├── QTERMP.COM │ │ │ ├── STAT.COM │ │ │ ├── SUBMIT.COM │ │ │ └── XSUB.COM │ ├── bcoco.c │ ├── bcoco.h │ ├── bios.asm │ ├── bios.asm.bak │ ├── bios.asm.orig │ ├── c8086.c │ ├── c8086.h │ ├── cas.c │ ├── cas.h │ ├── coco.c │ ├── coco.h │ ├── computer.h │ ├── cpm3.c │ ├── cpm3.h │ ├── cz80.c │ ├── cz80.h │ ├── cz80m6847.c │ ├── cz80m6847.h │ ├── dasm6809.c │ ├── dasm6809.h │ ├── disk.c │ ├── disk.h │ ├── emulation.h │ ├── font2bin.c │ ├── font_4x6.c │ ├── font_8x8.c │ ├── i8086.h │ ├── i8086disasm.c │ ├── i8086disasm.h │ ├── libemulation.c │ ├── m6502.c │ ├── m6502.h │ ├── m6502mem.c │ ├── m6502priv.h │ ├── m6809.c │ ├── m6809.h │ ├── m6809ops.c │ ├── m6809priv.h │ ├── modem.c │ ├── modem.h │ ├── rom.c │ ├── rom.h │ ├── run │ ├── spectrum.c │ ├── spectrum.h │ ├── spectrumcas.c │ ├── spectrumcas.h │ ├── thin_font.sh │ ├── tools │ │ ├── Hex2bin-2.5 │ │ │ ├── Makefile │ │ │ ├── binary.c │ │ │ ├── binary.h │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── doc │ │ │ │ ├── CRC list.txt │ │ │ │ ├── README │ │ │ │ ├── S-record.txt │ │ │ │ ├── formats.txt │ │ │ │ ├── intelhex.spc │ │ │ │ ├── old │ │ │ │ │ ├── ChangeLog_hex2bin │ │ │ │ │ └── ChangeLog_mot2bin │ │ │ │ └── srec.txt │ │ │ ├── hex2bin.1 │ │ │ ├── hex2bin.c │ │ │ ├── hex2bin.cbp │ │ │ ├── hex2bin.layout │ │ │ ├── hex2bin.pod │ │ │ ├── libcrc.c │ │ │ ├── libcrc.h │ │ │ ├── mot2bin.c │ │ │ ├── mot2bin.cbp │ │ │ └── mot2bin.layout │ │ ├── Makefile │ │ ├── galasm │ │ │ ├── ChangeLog │ │ │ ├── README │ │ │ ├── README2 │ │ │ ├── examples │ │ │ │ ├── Counter.chp │ │ │ │ ├── Counter.fus │ │ │ │ ├── Counter.jed │ │ │ │ ├── Counter.pin │ │ │ │ ├── Counter.pld │ │ │ │ ├── GAL20RA10.chp │ │ │ │ ├── GAL20RA10.fus │ │ │ │ ├── GAL20RA10.jed │ │ │ │ ├── GAL20RA10.pin │ │ │ │ ├── GAL20RA10.pld │ │ │ │ ├── GAL22V10.chp │ │ │ │ ├── GAL22V10.fus │ │ │ │ ├── GAL22V10.jed │ │ │ │ ├── GAL22V10.pin │ │ │ │ ├── GAL22V10.pld │ │ │ │ ├── Gatter.chp │ │ │ │ ├── Gatter.fus │ │ │ │ ├── Gatter.jed │ │ │ │ ├── Gatter.pin │ │ │ │ ├── Gatter.pld │ │ │ │ ├── Tristate.chp │ │ │ │ ├── Tristate.fus │ │ │ │ ├── Tristate.jed │ │ │ │ ├── Tristate.pin │ │ │ │ └── Tristate.pld │ │ │ ├── galer │ │ │ │ ├── asmerr.html │ │ │ │ ├── assembler.html │ │ │ │ ├── construction.html │ │ │ │ ├── errors.html │ │ │ │ ├── example16v8.html │ │ │ │ ├── example20ra10.html │ │ │ │ ├── example22v10.html │ │ │ │ ├── examples.html │ │ │ │ ├── gal16_20v8.html │ │ │ │ ├── gal20ra10.html │ │ │ │ ├── gal22v10.html │ │ │ │ ├── galer.html │ │ │ │ ├── history.html │ │ │ │ ├── important.html │ │ │ │ ├── index.gif │ │ │ │ ├── index.html │ │ │ │ ├── installation.html │ │ │ │ ├── intstruktur.html │ │ │ │ ├── jedecerr.html │ │ │ │ ├── jedecfile.html │ │ │ │ ├── keywords.html │ │ │ │ ├── literature.html │ │ │ │ ├── main.html │ │ │ │ ├── menabout.html │ │ │ │ ├── menacw.html │ │ │ │ ├── menasm.html │ │ │ │ ├── mencalleditor.html │ │ │ │ ├── menchecker.html │ │ │ │ ├── menclearnames.html │ │ │ │ ├── mencmp.html │ │ │ │ ├── mencopy.html │ │ │ │ ├── meneditor.html │ │ │ │ ├── menempty.html │ │ │ │ ├── menerase.html │ │ │ │ ├── mengalinfo.html │ │ │ │ ├── mengaltype.html │ │ │ │ ├── menhardver.html │ │ │ │ ├── menhelp.html │ │ │ │ ├── menjedecpar.html │ │ │ │ ├── menmakejedec.html │ │ │ │ ├── menoptimizer.html │ │ │ │ ├── menprog.html │ │ │ │ ├── menquit.html │ │ │ │ ├── menreadsig.html │ │ │ │ ├── menreasm.html │ │ │ │ ├── mensaveconfig.html │ │ │ │ ├── mensetsec.html │ │ │ │ ├── menshownames.html │ │ │ │ ├── mentestsec.html │ │ │ │ ├── mentypereq.html │ │ │ │ ├── menus.html │ │ │ │ ├── menwriteacc.html │ │ │ │ ├── next.gif │ │ │ │ ├── optimizer.html │ │ │ │ ├── partlist.html │ │ │ │ ├── prev.gif │ │ │ │ ├── proggal.html │ │ │ │ ├── proglogik.html │ │ │ │ ├── program.html │ │ │ │ ├── reasmerr.html │ │ │ │ ├── schaltbesch.html │ │ │ │ ├── shareware.html │ │ │ │ ├── software.html │ │ │ │ ├── sourcefile.html │ │ │ │ ├── systemreq.html │ │ │ │ ├── testing.html │ │ │ │ ├── thanks.html │ │ │ │ ├── toc.gif │ │ │ │ └── usage.html │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── galasm.c │ │ │ │ ├── galasm.h │ │ │ │ ├── jedec.c │ │ │ │ ├── localize.c │ │ │ │ └── support.c │ │ ├── ld80 │ │ │ ├── Makefile │ │ │ ├── do_out.c │ │ │ ├── fixup.c │ │ │ ├── hsearch.c │ │ │ ├── ld80.h │ │ │ ├── main.c │ │ │ ├── optget.c │ │ │ ├── readobj.c │ │ │ ├── section.c │ │ │ └── symbol.c │ │ ├── mkbin │ │ │ ├── Makefile │ │ │ └── mkbin.c │ │ └── zmac │ │ │ ├── Makefile │ │ │ ├── build.bat │ │ │ ├── doc.c │ │ │ ├── doc.txt │ │ │ ├── mio.c │ │ │ ├── mio.h │ │ │ ├── zi80dis.cpp │ │ │ ├── zi80dis.h │ │ │ └── zmac.y │ ├── trs80.c │ ├── trs80.h │ ├── txt2chr.c │ ├── vdg.c │ ├── vdg.h │ ├── wd1793.c │ ├── wd1793.h │ ├── wd1793new.c │ ├── z80.c │ ├── z80.h │ ├── z80disasm.c │ ├── z80disasm.h │ ├── z80opcodes.c │ ├── zx81.c │ ├── zx81.h │ ├── zx81cas.c │ └── zx81cas.h ├── libfatfs │ ├── Makefile │ ├── diskio.h │ ├── fatfs │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ └── ffunicode.c ├── libfb │ ├── Makefile │ ├── cursor.c │ └── libfb.c ├── libgpio │ ├── Makefile │ ├── gpio.c │ ├── gpio.sh │ ├── gpiobcm.c │ ├── gpiobcm.h │ ├── gpiomem.c │ ├── gpiomem.h │ ├── gpiosys.c │ ├── gpiosys.h │ └── libgpio.c ├── libili9486 │ ├── Makefile │ ├── ads7846.c │ ├── ads7846.h │ ├── ili9486.c │ ├── ili9486.h │ └── libili9486.c ├── libls2n │ ├── Makefile │ └── libls2n.c ├── liblsdl2 │ ├── Makefile │ └── liblsdl2.c ├── liblsdl3 │ ├── Makefile │ └── liblsdl3.c ├── libos │ ├── Makefile │ └── libos.c ├── liboshell │ ├── Makefile │ ├── liboshell.c │ ├── oshell.c │ ├── oshell.h │ └── wshell.c ├── libpit │ ├── Makefile │ ├── audio.h │ ├── average.c │ ├── average.h │ ├── bmp.c │ ├── bmp.h │ ├── bsearch.c │ ├── builtin.c │ ├── bytes.c │ ├── bytes.h │ ├── ctelnet.c │ ├── ctelnet.h │ ├── ctype.c │ ├── custom_malloc │ │ ├── custom_malloc.c │ │ └── custom_malloc.h │ ├── debug.c │ ├── debug.h │ ├── display.h │ ├── editor.h │ ├── endianness.c │ ├── endianness.h │ ├── filter.c │ ├── filter.h │ ├── findargs.c │ ├── findargs.h │ ├── floatscan.c │ ├── floatscan.h │ ├── fmodl.c │ ├── gpio.h │ ├── gpiomonitor.h │ ├── gps.c │ ├── gps.h │ ├── graphic.c │ ├── graphic.h │ ├── httpc.c │ ├── httpc.h │ ├── httpd.c │ ├── httpd.h │ ├── i2c.h │ ├── intscan.c │ ├── intscan.h │ ├── io.c │ ├── iterator.h │ ├── ldshape.h │ ├── list.c │ ├── loadfile.c │ ├── loadfile.h │ ├── login.c │ ├── login.h │ ├── main.c │ ├── main.h │ ├── malloc.c │ ├── math.c │ ├── media.c │ ├── media.h │ ├── meters.h │ ├── mime.h │ ├── mutex.c │ ├── mutex.h │ ├── mutexnull.c │ ├── mutexsc.c │ ├── pit_io.h │ ├── plist.h │ ├── printf.c │ ├── pscale.h │ ├── pspi.h │ ├── pterm.c │ ├── pterm.h │ ├── ptr.c │ ├── ptr.h │ ├── pwindow.h │ ├── qsort.c │ ├── qsort.h │ ├── rgb.c │ ├── rgb.h │ ├── script.c │ ├── script.h │ ├── secure.h │ ├── shell.h │ ├── sig.c │ ├── sig.h │ ├── sock.c │ ├── sock.h │ ├── stb_image.h │ ├── stb_image_write.h │ ├── string.c │ ├── strtod.c │ ├── strtol.c │ ├── strtoul.c │ ├── surface.c │ ├── surface.h │ ├── sys.c │ ├── sys.h │ ├── telnet.c │ ├── telnet.h │ ├── template.c │ ├── template.h │ ├── thread.h │ ├── threadipc.c │ ├── threadnull.c │ ├── threadptr.c │ ├── threadsc.c │ ├── threadudp.c │ ├── time.c │ ├── timeutc.c │ ├── timeutc.h │ ├── ts.c │ ├── ts.h │ ├── util.c │ ├── util.h │ ├── vfont.c │ ├── vfont.h │ ├── vfs.c │ ├── vfs.h │ ├── vfslocal.c │ ├── vfslocal.h │ ├── vsnprintf.c │ ├── vsnprintf.h │ ├── vsscanf.c │ ├── vsscanf.h │ ├── xalloc.c │ ├── xalloc.h │ ├── yuv.c │ └── yuv.h ├── libpluto │ ├── Makefile │ ├── VectorGraphics.c │ ├── VectorGraphics.h │ ├── plutosvg.c │ ├── plutosvg.h │ ├── plutovg-blend.c │ ├── plutovg-dash.c │ ├── plutovg-font.c │ ├── plutovg-geometry.c │ ├── plutovg-paint.c │ ├── plutovg-private.h │ ├── plutovg-rle.c │ ├── plutovg.c │ ├── plutovg.h │ ├── stb_image_write.h │ ├── stb_truetype.h │ ├── sw_ft_math.c │ ├── sw_ft_math.h │ ├── sw_ft_raster.c │ ├── sw_ft_raster.h │ ├── sw_ft_stroker.c │ ├── sw_ft_stroker.h │ └── sw_ft_types.h ├── libpumpkin │ ├── AboutBox.c │ ├── Abt.zig │ ├── AddressSortLib.c │ ├── AlarmMgr.c │ ├── AppRegistry.c │ ├── AppRegistry.h │ ├── AttentionMgr.c │ ├── Bitmap.c │ ├── Bmp.zig │ ├── BmpGlue.c │ ├── BtLib.c │ ├── CPMLib68KInterface.c │ ├── Category.c │ ├── CharAttr.c │ ├── Chat.c │ ├── Chat.h │ ├── CipherPlugin.h │ ├── Clipboard.c │ ├── ColorTable.c │ ├── ColorTable.h │ ├── ConnectionMgr.c │ ├── ConsoleMgr.c │ ├── Control.c │ ├── Crc.c │ ├── CryptoPlugin.h │ ├── Ctl.zig │ ├── CtlGlue.c │ ├── DDm.h │ ├── DLServer.c │ ├── DataMgr.c │ ├── DataMgr.c.old │ ├── DateGlue.c │ ├── DateTime.c │ ├── Day.c │ ├── DebugMgr.c │ ├── Dm.zig │ ├── Encrypt.c │ ├── ErrorBase.c │ ├── Event.c │ ├── Evt.zig │ ├── ExgLib.c │ ├── ExgMgr.c │ ├── ExpansionMgr.c │ ├── FSLib.c │ ├── FatalAlert.c │ ├── FeatureMgr.c │ ├── Field.c │ ├── FileBrowser.c │ ├── FileStream.c │ ├── Find.c │ ├── FixedMath.c │ ├── Fld.zig │ ├── FldGlue.c │ ├── FloatMgr.c │ ├── FntGlue.c │ ├── Font.c │ ├── FontSelect.c │ ├── Form.c │ ├── Frm.zig │ ├── FrmGlue.c │ ├── GPDLib.c │ ├── GPDLib.h │ ├── GPSLib68K.c │ ├── Graffiti.c │ ├── GraffitiReference.c │ ├── GraffitiShift.c │ ├── HAL.c │ ├── HashPlugin.h │ ├── HostControl.c │ ├── IMCUtils.c │ ├── INetMgr.c │ ├── InsPoint.c │ ├── IntlMgr.c │ ├── IrLib.c │ ├── KeyMgr.c │ ├── Keyboard.c │ ├── Launcher.c │ ├── List.c │ ├── LocaleMgr.c │ ├── Localize.c │ ├── LstGlue.c │ ├── Lz77Mgr.c │ ├── Makefile │ ├── Mem.zig │ ├── MemGlue.c │ ├── Menu.c │ ├── Menu.zig │ ├── ModemMgr.c │ ├── NetBitUtils.c │ ├── NetMgr.c │ ├── OverlayMgr.c │ ├── Password.c │ ├── PceNativeCall.c │ ├── PdiLib.c │ ├── PenInputMgr.c │ ├── PenMgr.c │ ├── PhoneLookup.c │ ├── Preferences.c │ ├── PrivateRecords.c │ ├── Progress.c │ ├── Rect.c │ ├── RegistryMgr.c │ ├── RegistryMgr.h │ ├── ScrollBar.c │ ├── SelDay.c │ ├── SelTime.c │ ├── SelTimeZone.c │ ├── SerialLinkMgr.c │ ├── SerialMgr.c │ ├── SerialMgrOld.c │ ├── SerialSdrv.c │ ├── SerialVdrv.c │ ├── SlotDrvrLib.c │ ├── SoundMgr.c │ ├── SslLib.c │ ├── StringMgr.c │ ├── Sys.zig │ ├── SysEvtMgr.c │ ├── SysUtils.c │ ├── SystemMgr.c │ ├── Table.c │ ├── TblGlue.c │ ├── TelephonyMgr.c │ ├── TextMgr.c │ ├── TextServicesMgr.c │ ├── TimeMgr.c │ ├── TxtGlue.c │ ├── UDAMgr.c │ ├── UIColor.c │ ├── UIControls.c │ ├── UIResources.c │ ├── VFSExplorer.c │ ├── VFSExplorer.h │ ├── VFSMgr.c │ ├── Win.zig │ ├── WinGlue.c │ ├── Window.c │ ├── WindowAccessor.c │ ├── WindowAccessor.h │ ├── build.c │ ├── calibrate.c │ ├── calibrate.h │ ├── cmheap.c │ ├── color.h │ ├── cpmlib_switch.c │ ├── decode1bpp.c │ ├── deploy.c │ ├── deploy.h │ ├── dia.c │ ├── dia.h │ ├── dosbox.c │ ├── dosbox.h │ ├── edit.c │ ├── edit.h │ ├── emulation │ │ ├── FrmDispatchEvent.c │ │ ├── FrmDoDialog.c │ │ ├── FrmDrawForm.c │ │ ├── SysBinarySearch.c │ │ ├── SysFormPointerArrayToStrings.c │ │ ├── SysLibCustom.c │ │ ├── SysLibLoad.c │ │ ├── SysQSort.c │ │ ├── SysTables.txt │ │ ├── accessortrap.c │ │ ├── arm │ │ │ ├── CPU.c │ │ │ ├── CPU.h │ │ │ ├── MMU.c │ │ │ ├── MMU.h │ │ │ ├── RAM.c │ │ │ ├── RAM.h │ │ │ ├── armem.c │ │ │ ├── armem.h │ │ │ ├── armemu.c │ │ │ ├── armemu.h │ │ │ ├── cp15.c │ │ │ ├── cp15.h │ │ │ ├── icache.c │ │ │ ├── icache.h │ │ │ ├── pxa_IC.c │ │ │ ├── pxa_IC.h │ │ │ └── soc_IC.h │ │ ├── armsyscall.c │ │ ├── darm │ │ │ ├── armv7-tbl.c │ │ │ ├── armv7-tbl.h │ │ │ ├── armv7.c │ │ │ ├── darm-internal.h │ │ │ ├── darm-tbl.c │ │ │ ├── darm-tbl.h │ │ │ ├── darm.c │ │ │ ├── darm.h │ │ │ ├── thumb-tbl.c │ │ │ ├── thumb-tbl.h │ │ │ ├── thumb.c │ │ │ ├── thumb2-decoder.c │ │ │ ├── thumb2-tbl.c │ │ │ ├── thumb2-tbl.h │ │ │ ├── thumb2.c │ │ │ └── thumb2.h │ │ ├── disasm.c │ │ ├── disasm.h │ │ ├── emupalmos.c │ │ ├── emupalmos.h │ │ ├── emupalmosinc.h │ │ ├── expansiontrap.c │ │ ├── flpemtrap.c │ │ ├── flptrap.c │ │ ├── fstrap.c │ │ ├── gpdlibtrap.c │ │ ├── hdtrap.c │ │ ├── intltrap.c │ │ ├── lmtrap.c │ │ ├── m68k │ │ │ ├── m68k.h │ │ │ ├── m68kconf.h │ │ │ ├── m68kcpu.c │ │ │ ├── m68kcpu.h │ │ │ ├── m68kfpu.c │ │ │ ├── m68kmmu.h │ │ │ ├── m68kops.c │ │ │ └── m68kops.h │ │ ├── navtrap.c │ │ ├── netlibtrap.c │ │ ├── objdump2c.sh │ │ ├── omtrap.c │ │ ├── pfillibtrap.c │ │ ├── pinstrap.c │ │ ├── pmuilibtrap.c │ │ ├── serialtrap.c │ │ ├── softfloat │ │ │ ├── mamesf.h │ │ │ ├── milieu.h │ │ │ ├── softfloat-macros │ │ │ ├── softfloat-specialize │ │ │ ├── softfloat.c │ │ │ └── softfloat.h │ │ ├── switch.c │ │ ├── systrap.c │ │ └── tsmtrap.c │ ├── emulator.c │ ├── emulator.h │ ├── fill.c │ ├── fill.h │ ├── gen_log.sh │ ├── gen_stubs.sh │ ├── gen_traps.sh │ ├── gpdlib_switch.c │ ├── gpslib_switch.c │ ├── grail.c │ ├── grail.h │ ├── heap.h │ ├── jmpbuf.txt │ ├── junzip.c │ ├── junzip.h │ ├── kdtree.c │ ├── kdtree.h │ ├── language.c │ ├── language.h │ ├── launchcodes.struct │ ├── logtrap.c │ ├── logtrap.h │ ├── m68kdasm.c │ ├── md5.c │ ├── md5.h │ ├── navigator.h │ ├── netlib_switch.c │ ├── notifications.struct │ ├── notifs.txt │ ├── pdilib_switch.c │ ├── peditor.c │ ├── peditor.h │ ├── plibc.c │ ├── plibc.h │ ├── process_log.sh │ ├── puff.c │ ├── puff.h │ ├── pumpkin.c │ ├── pumpkin.h │ ├── pumpkin.zig │ ├── pumpkin_syscall.c │ ├── pumpkin_syscall_id.h │ ├── script.c │ ├── serde.sh │ ├── sha1.c │ ├── sha1.h │ ├── ssfn.h │ ├── ssfn_font.c │ ├── ssfn_font.h │ ├── storage.c │ ├── storage.h │ ├── syntax.c │ ├── syntax.h │ ├── syscall_switch.c │ ├── syssock.h │ ├── taskbar.c │ ├── taskbar.h │ ├── tos │ │ ├── aes.c │ │ ├── bios.txt │ │ ├── bios_case.c │ │ ├── bios_impl.c │ │ ├── bios_proto.h │ │ ├── dpaint.txt │ │ ├── gemdos.h │ │ ├── gemdos.txt │ │ ├── gemdos_case.c │ │ ├── gemdos_impl.c │ │ ├── gemdos_proto.h │ │ ├── gen_tos.sh │ │ ├── html2txt.sh │ │ ├── scancodes.h │ │ ├── scancodes.txt │ │ ├── tos.c │ │ ├── tos.h │ │ ├── vdi.c │ │ ├── xbios.txt │ │ ├── xbios_case.c │ │ ├── xbios_impl.c │ │ └── xbios_proto.h │ ├── traps.txt │ ├── unzip.c │ ├── unzip.h │ ├── vfsimport.h │ ├── wav.c │ ├── wav.h │ ├── wman.c │ ├── wman.h │ └── zigpumpkin.h ├── libray │ ├── Makefile │ └── libray.c ├── libresample │ ├── configtemplate.h │ ├── filterkit.c │ ├── filterkit.h │ ├── libresample.h │ ├── resample.c │ ├── resample_defs.h │ └── resamplesubs.c ├── libshell │ ├── Makefile │ └── libshell.c ├── libspi │ ├── Makefile │ ├── libspi.c │ ├── spi.c │ ├── spi_bcm.c │ └── spi_bcm.h ├── libwaveshare │ ├── Makefile │ ├── ads7846.c │ ├── ads7846.h │ ├── ili9486.c │ ├── ili9486.h │ └── libwaveshare.c ├── libwsurface │ ├── Makefile │ └── libwsurface.c ├── libwwayland │ ├── Makefile │ ├── libwwayland.c │ ├── readme.txt │ ├── shm.c │ ├── shm.h │ └── xdg-toplevel-icon-v1.xml ├── libwxcb │ ├── Makefile │ └── libwxcb.c ├── libzip │ ├── Makefile │ ├── compat.h │ ├── config.h │ ├── zip.h │ ├── zip_add.c │ ├── zip_add_dir.c │ ├── zip_add_entry.c │ ├── zip_algorithm_bzip2.c │ ├── zip_algorithm_deflate.c │ ├── zip_algorithm_xz.c │ ├── zip_algorithm_zstd.c │ ├── zip_buffer.c │ ├── zip_close.c │ ├── zip_crypto.h │ ├── zip_crypto_commoncrypto.c │ ├── zip_crypto_commoncrypto.h │ ├── zip_crypto_gnutls.c │ ├── zip_crypto_gnutls.h │ ├── zip_crypto_mbedtls.c │ ├── zip_crypto_mbedtls.h │ ├── zip_crypto_openssl.c │ ├── zip_crypto_openssl.h │ ├── zip_crypto_win.c │ ├── zip_crypto_win.h │ ├── zip_delete.c │ ├── zip_dir_add.c │ ├── zip_dirent.c │ ├── zip_discard.c │ ├── zip_entry.c │ ├── zip_err_str.c │ ├── zip_error.c │ ├── zip_error_clear.c │ ├── zip_error_get.c │ ├── zip_error_get_sys_type.c │ ├── zip_error_strerror.c │ ├── zip_error_to_str.c │ ├── zip_extra_field.c │ ├── zip_extra_field_api.c │ ├── zip_fclose.c │ ├── zip_fdopen.c │ ├── zip_file_add.c │ ├── zip_file_error_clear.c │ ├── zip_file_error_get.c │ ├── zip_file_get_comment.c │ ├── zip_file_get_external_attributes.c │ ├── zip_file_get_offset.c │ ├── zip_file_rename.c │ ├── zip_file_replace.c │ ├── zip_file_set_comment.c │ ├── zip_file_set_encryption.c │ ├── zip_file_set_external_attributes.c │ ├── zip_file_set_mtime.c │ ├── zip_file_strerror.c │ ├── zip_fopen.c │ ├── zip_fopen_encrypted.c │ ├── zip_fopen_index.c │ ├── zip_fopen_index_encrypted.c │ ├── zip_fread.c │ ├── zip_fseek.c │ ├── zip_ftell.c │ ├── zip_get_archive_comment.c │ ├── zip_get_archive_flag.c │ ├── zip_get_encryption_implementation.c │ ├── zip_get_file_comment.c │ ├── zip_get_name.c │ ├── zip_get_num_entries.c │ ├── zip_get_num_files.c │ ├── zip_hash.c │ ├── zip_io_util.c │ ├── zip_libzip_version.c │ ├── zip_memdup.c │ ├── zip_name_locate.c │ ├── zip_new.c │ ├── zip_open.c │ ├── zip_pkware.c │ ├── zip_progress.c │ ├── zip_random_unix.c │ ├── zip_random_uwp.c │ ├── zip_random_win32.c │ ├── zip_rename.c │ ├── zip_replace.c │ ├── zip_set_archive_comment.c │ ├── zip_set_archive_flag.c │ ├── zip_set_default_password.c │ ├── zip_set_file_comment.c │ ├── zip_set_file_compression.c │ ├── zip_set_name.c │ ├── zip_source_accept_empty.c │ ├── zip_source_begin_write.c │ ├── zip_source_begin_write_cloning.c │ ├── zip_source_buffer.c │ ├── zip_source_call.c │ ├── zip_source_close.c │ ├── zip_source_commit_write.c │ ├── zip_source_compress.c │ ├── zip_source_crc.c │ ├── zip_source_error.c │ ├── zip_source_file.h │ ├── zip_source_file_common.c │ ├── zip_source_file_stdio.c │ ├── zip_source_file_stdio.h │ ├── zip_source_file_stdio_named.c │ ├── zip_source_file_win32.c │ ├── zip_source_file_win32.h │ ├── zip_source_file_win32_ansi.c │ ├── zip_source_file_win32_named.c │ ├── zip_source_file_win32_utf16.c │ ├── zip_source_file_win32_utf8.c │ ├── zip_source_free.c │ ├── zip_source_function.c │ ├── zip_source_get_file_attributes.c │ ├── zip_source_is_deleted.c │ ├── zip_source_layered.c │ ├── zip_source_open.c │ ├── zip_source_pass_to_lower_layer.c │ ├── zip_source_pkware_decode.c │ ├── zip_source_pkware_encode.c │ ├── zip_source_read.c │ ├── zip_source_remove.c │ ├── zip_source_rollback_write.c │ ├── zip_source_seek.c │ ├── zip_source_seek_write.c │ ├── zip_source_stat.c │ ├── zip_source_supports.c │ ├── zip_source_tell.c │ ├── zip_source_tell_write.c │ ├── zip_source_window.c │ ├── zip_source_winzip_aes_decode.c │ ├── zip_source_winzip_aes_encode.c │ ├── zip_source_write.c │ ├── zip_source_zip.c │ ├── zip_source_zip_new.c │ ├── zip_stat.c │ ├── zip_stat_index.c │ ├── zip_stat_init.c │ ├── zip_strerror.c │ ├── zip_string.c │ ├── zip_unchange.c │ ├── zip_unchange_all.c │ ├── zip_unchange_archive.c │ ├── zip_unchange_data.c │ ├── zip_utf-8.c │ ├── zip_winzip_aes.c │ ├── zipconf.h │ └── zipint.h ├── libzycore │ ├── Allocator.c │ ├── ArgParse.c │ ├── Bitset.c │ ├── Format.c │ ├── List.c │ ├── Makefile │ ├── Memory.c │ ├── Process.c │ ├── String.c │ ├── Synchronization.c │ ├── Terminal.c │ ├── Thread.c │ ├── Vector.c │ ├── Zycore.c │ ├── Zycore │ │ ├── API │ │ │ ├── Memory.h │ │ │ ├── Process.h │ │ │ ├── Synchronization.h │ │ │ ├── Terminal.h │ │ │ └── Thread.h │ │ ├── Allocator.h │ │ ├── ArgParse.h │ │ ├── Atomic.h │ │ ├── Bitset.h │ │ ├── Comparison.h │ │ ├── Defines.h │ │ ├── Format.h │ │ ├── LibC.h │ │ ├── List.h │ │ ├── Object.h │ │ ├── Status.h │ │ ├── String.h │ │ ├── Types.h │ │ ├── Vector.h │ │ └── Zycore.h │ └── readme.txt ├── libzydis │ ├── Decoder.c │ ├── DecoderData.c │ ├── Disassembler.c │ ├── Encoder.c │ ├── EncoderData.c │ ├── Formatter.c │ ├── FormatterATT.c │ ├── FormatterBase.c │ ├── FormatterBuffer.c │ ├── FormatterIntel.c │ ├── Generated │ │ ├── AccessedFlags.inc │ │ ├── DecoderTables.inc │ │ ├── EncoderTables.inc │ │ ├── EnumISAExt.inc │ │ ├── EnumISASet.inc │ │ ├── EnumInstructionCategory.inc │ │ ├── EnumMnemonic.inc │ │ ├── EnumRegister.inc │ │ ├── FormatterStrings.inc │ │ ├── GetRelInfo.inc │ │ ├── InstructionDefinitions.inc │ │ ├── InstructionEncodings.inc │ │ ├── OperandDefinitions.inc │ │ ├── RegisterClassLookup.inc │ │ └── RegisterLookup.inc │ ├── Makefile │ ├── MetaInfo.c │ ├── Mnemonic.c │ ├── Register.c │ ├── Segment.c │ ├── SharedData.c │ ├── String.c │ ├── Utils.c │ ├── Zydis.c │ ├── Zydis │ │ ├── Decoder.h │ │ ├── DecoderTypes.h │ │ ├── Defines.h │ │ ├── Disassembler.h │ │ ├── Encoder.h │ │ ├── Formatter.h │ │ ├── FormatterBuffer.h │ │ ├── Generated │ │ │ ├── EnumISAExt.h │ │ │ ├── EnumISASet.h │ │ │ ├── EnumInstructionCategory.h │ │ │ ├── EnumMnemonic.h │ │ │ └── EnumRegister.h │ │ ├── Internal │ │ │ ├── DecoderData.h │ │ │ ├── EncoderData.h │ │ │ ├── FormatterATT.h │ │ │ ├── FormatterBase.h │ │ │ ├── FormatterIntel.h │ │ │ ├── SharedData.h │ │ │ └── String.h │ │ ├── MetaInfo.h │ │ ├── Mnemonic.h │ │ ├── Register.h │ │ ├── Segment.h │ │ ├── SharedTypes.h │ │ ├── ShortString.h │ │ ├── Status.h │ │ ├── Utils.h │ │ └── Zydis.h │ └── readme.txt ├── linux │ ├── Makefile │ └── main.c ├── lua │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ ├── lzio.h │ └── script_lua.c ├── microui │ ├── Makefile │ ├── fontstd.h │ ├── main.c │ ├── microui.c │ ├── microui.h │ ├── renderer.h │ ├── resource.h │ └── resource.rcp ├── mk.sh ├── pilrc │ ├── Makefile │ ├── PilRC.html │ ├── README.txt │ ├── bitmap.c │ ├── bitmap.h │ ├── font.c │ ├── font.h │ ├── lex.c │ ├── lex.h │ ├── main.c │ ├── pilrc.c │ ├── pilrc.h │ ├── plex.c │ ├── plex.h │ ├── restype.c │ ├── restype.h │ ├── stb_image.h │ ├── std.h │ ├── util.c │ ├── util.h │ ├── version.h │ └── win.c ├── prcbuild │ ├── Makefile │ ├── pdb.c │ ├── pdb.h │ ├── prcbuild.c │ └── prclist.c ├── rcpexport │ ├── Makefile │ ├── rcpexport.c │ └── resource.rcp ├── taskbar │ ├── Makefile │ ├── resource.h │ ├── resource.rcp │ └── taskbar.c ├── test │ ├── Makefile │ ├── resource.rcp │ └── test.c ├── tos │ ├── Makefile │ ├── resource.rcp │ └── tos.c ├── unscii │ ├── Makefile │ ├── resource.rcp │ ├── unscii.c │ ├── unscii_16_00_high.txt │ ├── unscii_16_00_low.txt │ ├── unscii_16_01_high.txt │ ├── unscii_16_01_low.txt │ ├── unscii_16_02_high.txt │ ├── unscii_16_02_low.txt │ ├── unscii_16_03_high.txt │ ├── unscii_16_03_low.txt │ ├── unscii_16_04_high.txt │ ├── unscii_16_04_low.txt │ ├── unscii_16_05_high.txt │ ├── unscii_16_05_low.txt │ ├── unscii_16_06_high.txt │ ├── unscii_16_06_low.txt │ ├── unscii_16_15_high.txt │ ├── unscii_16_15_low.txt │ ├── unscii_16_16_high.txt │ ├── unscii_16_16_low.txt │ ├── unscii_16_1e_high.txt │ ├── unscii_16_1e_low.txt │ ├── unscii_16_1f_high.txt │ ├── unscii_16_1f_low.txt │ ├── unscii_16_20_high.txt │ ├── unscii_16_20_low.txt │ ├── unscii_16_21_high.txt │ ├── unscii_16_21_low.txt │ ├── unscii_16_22_high.txt │ ├── unscii_16_22_low.txt │ ├── unscii_16_23_high.txt │ ├── unscii_16_23_low.txt │ ├── unscii_16_25_high.txt │ ├── unscii_16_25_low.txt │ ├── unscii_16_26_high.txt │ ├── unscii_16_26_low.txt │ ├── unscii_16_27_high.txt │ ├── unscii_16_27_low.txt │ ├── unscii_16_28_high.txt │ ├── unscii_16_28_low.txt │ ├── unscii_16_29_high.txt │ ├── unscii_16_29_low.txt │ ├── unscii_16_2b_high.txt │ ├── unscii_16_2b_low.txt │ ├── unscii_16_2e_high.txt │ ├── unscii_16_2e_low.txt │ ├── unscii_16_4d_high.txt │ ├── unscii_16_4d_low.txt │ ├── unscii_16_e0_high.txt │ ├── unscii_16_e0_low.txt │ ├── unscii_16_e1_high.txt │ ├── unscii_16_e1_low.txt │ ├── unscii_16_e8_high.txt │ ├── unscii_16_e8_low.txt │ ├── unscii_16_ec_high.txt │ ├── unscii_16_ec_low.txt │ ├── unscii_16_fe_high.txt │ ├── unscii_16_fe_low.txt │ ├── unscii_16_ff_high.txt │ ├── unscii_16_ff_low.txt │ ├── unscii_8_00_high.txt │ ├── unscii_8_00_low.txt │ ├── unscii_8_01_high.txt │ ├── unscii_8_01_low.txt │ ├── unscii_8_02_high.txt │ ├── unscii_8_02_low.txt │ ├── unscii_8_03_high.txt │ ├── unscii_8_03_low.txt │ ├── unscii_8_04_high.txt │ ├── unscii_8_04_low.txt │ ├── unscii_8_05_high.txt │ ├── unscii_8_05_low.txt │ ├── unscii_8_06_high.txt │ ├── unscii_8_06_low.txt │ ├── unscii_8_15_high.txt │ ├── unscii_8_15_low.txt │ ├── unscii_8_16_high.txt │ ├── unscii_8_16_low.txt │ ├── unscii_8_1e_high.txt │ ├── unscii_8_1e_low.txt │ ├── unscii_8_1f_high.txt │ ├── unscii_8_1f_low.txt │ ├── unscii_8_20_high.txt │ ├── unscii_8_20_low.txt │ ├── unscii_8_21_high.txt │ ├── unscii_8_21_low.txt │ ├── unscii_8_22_high.txt │ ├── unscii_8_22_low.txt │ ├── unscii_8_23_high.txt │ ├── unscii_8_23_low.txt │ ├── unscii_8_25_high.txt │ ├── unscii_8_25_low.txt │ ├── unscii_8_26_high.txt │ ├── unscii_8_26_low.txt │ ├── unscii_8_27_high.txt │ ├── unscii_8_27_low.txt │ ├── unscii_8_28_high.txt │ ├── unscii_8_28_low.txt │ ├── unscii_8_29_high.txt │ ├── unscii_8_29_low.txt │ ├── unscii_8_2b_high.txt │ ├── unscii_8_2b_low.txt │ ├── unscii_8_2e_high.txt │ ├── unscii_8_2e_low.txt │ ├── unscii_8_4d_high.txt │ ├── unscii_8_4d_low.txt │ ├── unscii_8_e0_high.txt │ ├── unscii_8_e0_low.txt │ ├── unscii_8_e1_high.txt │ ├── unscii_8_e1_low.txt │ ├── unscii_8_e8_high.txt │ ├── unscii_8_e8_low.txt │ ├── unscii_8_ec_high.txt │ ├── unscii_8_ec_low.txt │ ├── unscii_8_fe_high.txt │ ├── unscii_8_fe_low.txt │ ├── unscii_8_ff_high.txt │ ├── unscii_8_ff_low.txt │ ├── x16 │ └── x8 ├── utf8 │ ├── Makefile │ └── utf8.c ├── vi │ ├── Makefile │ └── vi.c ├── windows │ ├── Makefile │ ├── drop.cpp │ ├── drop.h │ ├── flush_icons.txt │ ├── icon.rc │ ├── main.c │ ├── midi.c │ ├── midi.h │ ├── pumpkin.ico │ └── version.rc └── zigtest │ ├── Makefile │ ├── build.zig │ ├── main.zig │ └── zigpumpkin.h ├── util ├── pack_linux.sh └── pack_windows.sh └── vfs └── app_card ├── PALM └── Programs │ └── Command │ ├── life.lua │ ├── test.js │ └── test.lua ├── templates └── test.html └── www ├── favicon.ico └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/README.md -------------------------------------------------------------------------------- /lib/msys-2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/lib/msys-2.0.dll -------------------------------------------------------------------------------- /lib/msys-stdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/lib/msys-stdc++-6.dll -------------------------------------------------------------------------------- /lib32/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/lib32/libstdc++-6.dll -------------------------------------------------------------------------------- /licenses/DateBook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/DateBook.txt -------------------------------------------------------------------------------- /licenses/Garmin_SDK.txt: -------------------------------------------------------------------------------- 1 | Copyright 2002-2003 by Garmin Ltd. or its subsidiaries. 2 | -------------------------------------------------------------------------------- /licenses/Lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/Lua.txt -------------------------------------------------------------------------------- /licenses/MemoPad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/MemoPad.txt -------------------------------------------------------------------------------- /licenses/MineHunt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/MineHunt.txt -------------------------------------------------------------------------------- /licenses/PalmOS_SDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/PalmOS_SDK.txt -------------------------------------------------------------------------------- /licenses/SDL2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/SDL2.txt -------------------------------------------------------------------------------- /licenses/ToDoList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/ToDoList.txt -------------------------------------------------------------------------------- /licenses/darm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/darm.txt -------------------------------------------------------------------------------- /licenses/duktape.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/duktape.txt -------------------------------------------------------------------------------- /licenses/mingw64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/mingw64.txt -------------------------------------------------------------------------------- /licenses/mingw64_rt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/mingw64_rt.txt -------------------------------------------------------------------------------- /licenses/musashi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/musashi.txt -------------------------------------------------------------------------------- /licenses/softfloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/softfloat.txt -------------------------------------------------------------------------------- /licenses/stb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/stb.txt -------------------------------------------------------------------------------- /licenses/uARM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/licenses/uARM.txt -------------------------------------------------------------------------------- /pumpkin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/pumpkin.bat -------------------------------------------------------------------------------- /pumpkin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/pumpkin.sh -------------------------------------------------------------------------------- /pumpkin.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/pumpkin.vbs -------------------------------------------------------------------------------- /pumpkin.wine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/pumpkin.wine -------------------------------------------------------------------------------- /pumpkin32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/pumpkin32.bat -------------------------------------------------------------------------------- /pumpkin_rpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/pumpkin_rpi.sh -------------------------------------------------------------------------------- /screenshots/pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/screenshots/pumpkin.png -------------------------------------------------------------------------------- /script/pumpkin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/script/pumpkin.lua -------------------------------------------------------------------------------- /script/pumpkin_linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/script/pumpkin_linux.js -------------------------------------------------------------------------------- /script/pumpkin_rpi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/script/pumpkin_rpi.lua -------------------------------------------------------------------------------- /src/AddressBook/mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/AddressBook/mkp -------------------------------------------------------------------------------- /src/AddressBook/resources/fmap03e8.dat: -------------------------------------------------------------------------------- 1 |   2 |  -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTL03e8.dat: -------------------------------------------------------------------------------- 1 | CityStatePost Code -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTL03ec.dat: -------------------------------------------------------------------------------- 1 | CityProvincePostal Code -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTL03fe.dat: -------------------------------------------------------------------------------- 1 | TownCountyPost Code -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTL03ff.dat: -------------------------------------------------------------------------------- 1 | CityStateZip Code -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR0064.dat: -------------------------------------------------------------------------------- 1 | Addresses -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR00c8.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR00c9.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR00ca.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR00cb.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR00cc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03e9.dat: -------------------------------------------------------------------------------- 1 | an address -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03ea.dat: -------------------------------------------------------------------------------- 1 | Address.vcf -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03eb.dat: -------------------------------------------------------------------------------- 1 | Copy -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03ec.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03ed.dat: -------------------------------------------------------------------------------- 1 | Delete Address... -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03ee.dat: -------------------------------------------------------------------------------- 1 | Beam Address -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03ef.dat: -------------------------------------------------------------------------------- 1 | Business Card -------------------------------------------------------------------------------- /src/AddressBook/resources/tSTR03f0.dat: -------------------------------------------------------------------------------- 1 | Business Cards -------------------------------------------------------------------------------- /src/AddressBook/resources/taic03e8.dat: -------------------------------------------------------------------------------- 1 | Main -------------------------------------------------------------------------------- /src/AddressBook/resources/tver0001.dat: -------------------------------------------------------------------------------- 1 | 4.0 -------------------------------------------------------------------------------- /src/AddressBook/sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/AddressBook/sec.h -------------------------------------------------------------------------------- /src/BOOT/0.pmid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/0.pmid -------------------------------------------------------------------------------- /src/BOOT/1.pmid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/1.pmid -------------------------------------------------------------------------------- /src/BOOT/16x16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/16x16.txt -------------------------------------------------------------------------------- /src/BOOT/2.pmid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/2.pmid -------------------------------------------------------------------------------- /src/BOOT/3.pmid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/3.pmid -------------------------------------------------------------------------------- /src/BOOT/3x5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/3x5.txt -------------------------------------------------------------------------------- /src/BOOT/4.pmid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/4.pmid -------------------------------------------------------------------------------- /src/BOOT/4x7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/4x7.txt -------------------------------------------------------------------------------- /src/BOOT/4x8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/4x8.txt -------------------------------------------------------------------------------- /src/BOOT/5.pmid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/5.pmid -------------------------------------------------------------------------------- /src/BOOT/6.pmid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/6.pmid -------------------------------------------------------------------------------- /src/BOOT/6x10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/6x10.txt -------------------------------------------------------------------------------- /src/BOOT/8x14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/8x14.txt -------------------------------------------------------------------------------- /src/BOOT/8x16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/8x16.txt -------------------------------------------------------------------------------- /src/BOOT/8x8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/8x8.txt -------------------------------------------------------------------------------- /src/BOOT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/Makefile -------------------------------------------------------------------------------- /src/BOOT/back_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/back_72.bmp -------------------------------------------------------------------------------- /src/BOOT/backw_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/backw_72.bmp -------------------------------------------------------------------------------- /src/BOOT/boot.rcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/boot.rcp -------------------------------------------------------------------------------- /src/BOOT/down_144.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/down_144.bmp -------------------------------------------------------------------------------- /src/BOOT/down_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/down_72.bmp -------------------------------------------------------------------------------- /src/BOOT/enter_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/enter_72.bmp -------------------------------------------------------------------------------- /src/BOOT/enterw_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/enterw_72.bmp -------------------------------------------------------------------------------- /src/BOOT/error_144.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/error_144.bmp -------------------------------------------------------------------------------- /src/BOOT/error_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/error_72.bmp -------------------------------------------------------------------------------- /src/BOOT/handle_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/handle_72.bmp -------------------------------------------------------------------------------- /src/BOOT/logo_144.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/logo_144.bmp -------------------------------------------------------------------------------- /src/BOOT/logo_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/logo_72.bmp -------------------------------------------------------------------------------- /src/BOOT/qrcode_144.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/qrcode_144.bmp -------------------------------------------------------------------------------- /src/BOOT/qrcode_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/qrcode_72.bmp -------------------------------------------------------------------------------- /src/BOOT/rampup_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/rampup_72.bmp -------------------------------------------------------------------------------- /src/BOOT/scale_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/scale_72.bmp -------------------------------------------------------------------------------- /src/BOOT/tAIB.10000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tAIB.10000 -------------------------------------------------------------------------------- /src/BOOT/tAIB.10001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tAIB.10001 -------------------------------------------------------------------------------- /src/BOOT/tab_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tab_72.bmp -------------------------------------------------------------------------------- /src/BOOT/tabw_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tabw_72.bmp -------------------------------------------------------------------------------- /src/BOOT/taskbar_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/taskbar_72.bmp -------------------------------------------------------------------------------- /src/BOOT/tos4x4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tos4x4.txt -------------------------------------------------------------------------------- /src/BOOT/tos4x8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tos4x8.txt -------------------------------------------------------------------------------- /src/BOOT/tos8x16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tos8x16.txt -------------------------------------------------------------------------------- /src/BOOT/tos8x8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/tos8x8.txt -------------------------------------------------------------------------------- /src/BOOT/trigger_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/trigger_72.bmp -------------------------------------------------------------------------------- /src/BOOT/up_144.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/up_144.bmp -------------------------------------------------------------------------------- /src/BOOT/up_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/up_72.bmp -------------------------------------------------------------------------------- /src/BOOT/warning_72.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/BOOT/warning_72.bmp -------------------------------------------------------------------------------- /src/Command/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/Makefile -------------------------------------------------------------------------------- /src/Command/command.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/command.bmp -------------------------------------------------------------------------------- /src/Command/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/command.c -------------------------------------------------------------------------------- /src/Command/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/command.h -------------------------------------------------------------------------------- /src/Command/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/command.js -------------------------------------------------------------------------------- /src/Command/command.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/command.lua -------------------------------------------------------------------------------- /src/Command/deploy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/deploy.c -------------------------------------------------------------------------------- /src/Command/deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/deploy.h -------------------------------------------------------------------------------- /src/Command/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/file.h -------------------------------------------------------------------------------- /src/Command/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/form.js -------------------------------------------------------------------------------- /src/Command/form.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/form.lua -------------------------------------------------------------------------------- /src/Command/luaH.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/luaH.bmp -------------------------------------------------------------------------------- /src/Command/luaL.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/luaL.bmp -------------------------------------------------------------------------------- /src/Command/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Command/resource.h -------------------------------------------------------------------------------- /src/DateBook/DateDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DateDB.c -------------------------------------------------------------------------------- /src/DateBook/DateDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DateDB.h -------------------------------------------------------------------------------- /src/DateBook/DateDay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DateDay.c -------------------------------------------------------------------------------- /src/DateBook/DateDay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DateDay.h -------------------------------------------------------------------------------- /src/DateBook/DatePref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DatePref.c -------------------------------------------------------------------------------- /src/DateBook/DatePref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DatePref.h -------------------------------------------------------------------------------- /src/DateBook/DateWeek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DateWeek.c -------------------------------------------------------------------------------- /src/DateBook/DateWeek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/DateWeek.h -------------------------------------------------------------------------------- /src/DateBook/Datebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/Datebook.c -------------------------------------------------------------------------------- /src/DateBook/Datebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/Datebook.h -------------------------------------------------------------------------------- /src/DateBook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/Makefile -------------------------------------------------------------------------------- /src/DateBook/ToDo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/ToDo.h -------------------------------------------------------------------------------- /src/DateBook/ToDoDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/ToDoDB.c -------------------------------------------------------------------------------- /src/DateBook/ToDoDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/ToDoDB.h -------------------------------------------------------------------------------- /src/DateBook/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/debug.h -------------------------------------------------------------------------------- /src/DateBook/record.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/record.txt -------------------------------------------------------------------------------- /src/DateBook/resources/tAIN03e8.dat: -------------------------------------------------------------------------------- 1 | Date Book -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0064.dat: -------------------------------------------------------------------------------- 1 | Datebook -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0065.dat: -------------------------------------------------------------------------------- 1 | Go To Date -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0066.dat: -------------------------------------------------------------------------------- 1 | Set Time -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0067.dat: -------------------------------------------------------------------------------- 1 | Set Date -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0068.dat: -------------------------------------------------------------------------------- 1 | Ending On -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0069.dat: -------------------------------------------------------------------------------- 1 | SMTWTFS -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR007e.dat: -------------------------------------------------------------------------------- 1 | No time -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0080.dat: -------------------------------------------------------------------------------- 1 | Every ^f day -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0081.dat: -------------------------------------------------------------------------------- 1 | Every ^f week on ^d -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0082.dat: -------------------------------------------------------------------------------- 1 | Every ^f week on ^d and ^d -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0088.dat: -------------------------------------------------------------------------------- 1 | The ^w ^d of every ^f month -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0089.dat: -------------------------------------------------------------------------------- 1 | The ^x of every ^f month -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR008a.dat: -------------------------------------------------------------------------------- 1 | ^m ^x every ^f year -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR008c.dat: -------------------------------------------------------------------------------- 1 | 1st 2nd 3rd 4th last -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR008e.dat: -------------------------------------------------------------------------------- 1 | No Repeat -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR008f.dat: -------------------------------------------------------------------------------- 1 | Every day -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0090.dat: -------------------------------------------------------------------------------- 1 | Every week on ^d -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0091.dat: -------------------------------------------------------------------------------- 1 | Every week on ^d and ^d -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0097.dat: -------------------------------------------------------------------------------- 1 | The ^w ^d of every month -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0098.dat: -------------------------------------------------------------------------------- 1 | The ^x of every month -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0099.dat: -------------------------------------------------------------------------------- 1 | ^m ^x every year -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR009c.dat: -------------------------------------------------------------------------------- 1 | Sun Mon Tue Wed Thu Fri Sat -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03e8.dat: -------------------------------------------------------------------------------- 1 | an event -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03e9.dat: -------------------------------------------------------------------------------- 1 | DateBook.vcs -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03ea.dat: -------------------------------------------------------------------------------- 1 | ^2r ^0r, ^4s -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03eb.dat: -------------------------------------------------------------------------------- 1 | ^0r ^2r ^4s -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03ec.dat: -------------------------------------------------------------------------------- 1 | ^0r. ^2r ^4s -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03ed.dat: -------------------------------------------------------------------------------- 1 | ^0r ^2r ^4s -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03ee.dat: -------------------------------------------------------------------------------- 1 | ^4s ^2r ^0r -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03ef.dat: -------------------------------------------------------------------------------- 1 | ^4s.^3r.^0r -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03f0.dat: -------------------------------------------------------------------------------- 1 | ^4s ^2r ^0r -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03f1.dat: -------------------------------------------------------------------------------- 1 | Event -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03f2.dat: -------------------------------------------------------------------------------- 1 | Unknown -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03f3.dat: -------------------------------------------------------------------------------- 1 | Events -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03f4.dat: -------------------------------------------------------------------------------- 1 | To Do items -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR03fc.dat: -------------------------------------------------------------------------------- 1 | ^2r-^0r-^4s -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR044c.dat: -------------------------------------------------------------------------------- 1 | Week ^1 -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR044d.dat: -------------------------------------------------------------------------------- 1 | ^2r '^4s -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR044e.dat: -------------------------------------------------------------------------------- 1 | ^2r -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR044f.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0450.dat: -------------------------------------------------------------------------------- 1 | ^0 - ^1 -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0451.dat: -------------------------------------------------------------------------------- 1 | ^0 -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR04b0.dat: -------------------------------------------------------------------------------- 1 | ^2r ^4r -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0708.dat: -------------------------------------------------------------------------------- 1 | Alarm -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR07d1.dat: -------------------------------------------------------------------------------- 1 | ^0, ^1 -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR07d2.dat: -------------------------------------------------------------------------------- 1 | Private Appointment -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR07d3.dat: -------------------------------------------------------------------------------- 1 | Today -------------------------------------------------------------------------------- /src/DateBook/resources/tSTR0899.dat: -------------------------------------------------------------------------------- 1 | No Appointments Today -------------------------------------------------------------------------------- /src/DateBook/resources/taic03e8.dat: -------------------------------------------------------------------------------- 1 | Main -------------------------------------------------------------------------------- /src/DateBook/resources/tint044c.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DateBook/resources/tint0708.dat: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /src/DateBook/resources/tver0001.dat: -------------------------------------------------------------------------------- 1 | 4.0 -------------------------------------------------------------------------------- /src/DateBook/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook/sections.h -------------------------------------------------------------------------------- /src/DateBook2/DateDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/DateDB.c -------------------------------------------------------------------------------- /src/DateBook2/DateDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/DateDB.h -------------------------------------------------------------------------------- /src/DateBook2/DateDay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/DateDay.c -------------------------------------------------------------------------------- /src/DateBook2/DateDay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/DateDay.h -------------------------------------------------------------------------------- /src/DateBook2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/Makefile -------------------------------------------------------------------------------- /src/DateBook2/ToDo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/ToDo.h -------------------------------------------------------------------------------- /src/DateBook2/ToDoDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/ToDoDB.c -------------------------------------------------------------------------------- /src/DateBook2/ToDoDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/DateBook2/ToDoDB.h -------------------------------------------------------------------------------- /src/DateBook2/resources/tAIN03e8.dat: -------------------------------------------------------------------------------- 1 | Date Book -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0064.dat: -------------------------------------------------------------------------------- 1 | Datebook -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0065.dat: -------------------------------------------------------------------------------- 1 | Go To Date -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0066.dat: -------------------------------------------------------------------------------- 1 | Set Time -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0067.dat: -------------------------------------------------------------------------------- 1 | Set Date -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0068.dat: -------------------------------------------------------------------------------- 1 | Ending On -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0069.dat: -------------------------------------------------------------------------------- 1 | SMTWTFS -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR007e.dat: -------------------------------------------------------------------------------- 1 | No time -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0080.dat: -------------------------------------------------------------------------------- 1 | Every ^f day -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0081.dat: -------------------------------------------------------------------------------- 1 | Every ^f week on ^d -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0082.dat: -------------------------------------------------------------------------------- 1 | Every ^f week on ^d and ^d -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0088.dat: -------------------------------------------------------------------------------- 1 | The ^w ^d of every ^f month -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0089.dat: -------------------------------------------------------------------------------- 1 | The ^x of every ^f month -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR008a.dat: -------------------------------------------------------------------------------- 1 | ^m ^x every ^f year -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR008c.dat: -------------------------------------------------------------------------------- 1 | 1st 2nd 3rd 4th last -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR008e.dat: -------------------------------------------------------------------------------- 1 | No Repeat -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR008f.dat: -------------------------------------------------------------------------------- 1 | Every day -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0090.dat: -------------------------------------------------------------------------------- 1 | Every week on ^d -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0091.dat: -------------------------------------------------------------------------------- 1 | Every week on ^d and ^d -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0097.dat: -------------------------------------------------------------------------------- 1 | The ^w ^d of every month -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0098.dat: -------------------------------------------------------------------------------- 1 | The ^x of every month -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0099.dat: -------------------------------------------------------------------------------- 1 | ^m ^x every year -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR009c.dat: -------------------------------------------------------------------------------- 1 | Sun Mon Tue Wed Thu Fri Sat -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03e8.dat: -------------------------------------------------------------------------------- 1 | an event -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03e9.dat: -------------------------------------------------------------------------------- 1 | DateBook.vcs -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03ea.dat: -------------------------------------------------------------------------------- 1 | ^2r ^0r, ^4s -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03eb.dat: -------------------------------------------------------------------------------- 1 | ^0r ^2r ^4s -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03ec.dat: -------------------------------------------------------------------------------- 1 | ^0r. ^2r ^4s -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03ed.dat: -------------------------------------------------------------------------------- 1 | ^0r ^2r ^4s -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03ee.dat: -------------------------------------------------------------------------------- 1 | ^4s ^2r ^0r -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03ef.dat: -------------------------------------------------------------------------------- 1 | ^4s.^3r.^0r -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03f0.dat: -------------------------------------------------------------------------------- 1 | ^4s ^2r ^0r -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03f1.dat: -------------------------------------------------------------------------------- 1 | Event -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03f2.dat: -------------------------------------------------------------------------------- 1 | Unknown -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03f3.dat: -------------------------------------------------------------------------------- 1 | Events -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03f4.dat: -------------------------------------------------------------------------------- 1 | To Do items -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR03fc.dat: -------------------------------------------------------------------------------- 1 | ^2r-^0r-^4s -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR044c.dat: -------------------------------------------------------------------------------- 1 | Week ^1 -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR044d.dat: -------------------------------------------------------------------------------- 1 | ^2r '^4s -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR044e.dat: -------------------------------------------------------------------------------- 1 | ^2r -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR044f.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0450.dat: -------------------------------------------------------------------------------- 1 | ^0 - ^1 -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0451.dat: -------------------------------------------------------------------------------- 1 | ^0 -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR04b0.dat: -------------------------------------------------------------------------------- 1 | ^2r ^4r -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0708.dat: -------------------------------------------------------------------------------- 1 | Alarm -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR07d1.dat: -------------------------------------------------------------------------------- 1 | ^0, ^1 -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR07d2.dat: -------------------------------------------------------------------------------- 1 | Private Appointment -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR07d3.dat: -------------------------------------------------------------------------------- 1 | Today -------------------------------------------------------------------------------- /src/DateBook2/resources/tSTR0899.dat: -------------------------------------------------------------------------------- 1 | No Appointments Today -------------------------------------------------------------------------------- /src/DateBook2/resources/taic03e8.dat: -------------------------------------------------------------------------------- 1 | Main -------------------------------------------------------------------------------- /src/DateBook2/resources/tint044c.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DateBook2/resources/tint0708.dat: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /src/DateBook2/resources/tver0001.dat: -------------------------------------------------------------------------------- 1 | 4.0 -------------------------------------------------------------------------------- /src/Edit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Edit/Makefile -------------------------------------------------------------------------------- /src/Edit/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Edit/edit.c -------------------------------------------------------------------------------- /src/HelloWorld/HelloWorld.def: -------------------------------------------------------------------------------- 1 | application { "Hello World" HeWo } 2 | -------------------------------------------------------------------------------- /src/HelloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/HelloWorld/Makefile -------------------------------------------------------------------------------- /src/Hotsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/Makefile -------------------------------------------------------------------------------- /src/Hotsync/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/cmp.c -------------------------------------------------------------------------------- /src/Hotsync/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/config.h -------------------------------------------------------------------------------- /src/Hotsync/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/debug.c -------------------------------------------------------------------------------- /src/Hotsync/dlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/dlp.c -------------------------------------------------------------------------------- /src/Hotsync/dummy10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/dummy10.bmp -------------------------------------------------------------------------------- /src/Hotsync/error20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/error20.bmp -------------------------------------------------------------------------------- /src/Hotsync/hotsync.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/hotsync.bmp -------------------------------------------------------------------------------- /src/Hotsync/hotsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/hotsync.c -------------------------------------------------------------------------------- /src/Hotsync/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/inet.c -------------------------------------------------------------------------------- /src/Hotsync/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/md5.c -------------------------------------------------------------------------------- /src/Hotsync/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/net.c -------------------------------------------------------------------------------- /src/Hotsync/not/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/blob.c -------------------------------------------------------------------------------- /src/Hotsync/not/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/mail.c -------------------------------------------------------------------------------- /src/Hotsync/not/memo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/memo.c -------------------------------------------------------------------------------- /src/Hotsync/not/money.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/money.c -------------------------------------------------------------------------------- /src/Hotsync/not/popt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/popt.c -------------------------------------------------------------------------------- /src/Hotsync/not/popt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/popt.h -------------------------------------------------------------------------------- /src/Hotsync/not/todo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/todo.c -------------------------------------------------------------------------------- /src/Hotsync/not/veo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/not/veo.c -------------------------------------------------------------------------------- /src/Hotsync/ok20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/ok20.bmp -------------------------------------------------------------------------------- /src/Hotsync/padp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/padp.c -------------------------------------------------------------------------------- /src/Hotsync/pi-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-args.h -------------------------------------------------------------------------------- /src/Hotsync/pi-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-buffer.c -------------------------------------------------------------------------------- /src/Hotsync/pi-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-buffer.h -------------------------------------------------------------------------------- /src/Hotsync/pi-cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-cmp.h -------------------------------------------------------------------------------- /src/Hotsync/pi-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-debug.h -------------------------------------------------------------------------------- /src/Hotsync/pi-dlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-dlp.h -------------------------------------------------------------------------------- /src/Hotsync/pi-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-error.h -------------------------------------------------------------------------------- /src/Hotsync/pi-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-file.c -------------------------------------------------------------------------------- /src/Hotsync/pi-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-file.h -------------------------------------------------------------------------------- /src/Hotsync/pi-inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-inet.h -------------------------------------------------------------------------------- /src/Hotsync/pi-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-macros.h -------------------------------------------------------------------------------- /src/Hotsync/pi-md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-md5.h -------------------------------------------------------------------------------- /src/Hotsync/pi-net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-net.h -------------------------------------------------------------------------------- /src/Hotsync/pi-padp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-padp.h -------------------------------------------------------------------------------- /src/Hotsync/pi-serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-serial.h -------------------------------------------------------------------------------- /src/Hotsync/pi-slp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-slp.h -------------------------------------------------------------------------------- /src/Hotsync/pi-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-socket.h -------------------------------------------------------------------------------- /src/Hotsync/pi-source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-source.h -------------------------------------------------------------------------------- /src/Hotsync/pi-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-sync.h -------------------------------------------------------------------------------- /src/Hotsync/pi-sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-sys.h -------------------------------------------------------------------------------- /src/Hotsync/pi-syspkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-syspkt.h -------------------------------------------------------------------------------- /src/Hotsync/pi-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/pi-util.h -------------------------------------------------------------------------------- /src/Hotsync/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/resource.h -------------------------------------------------------------------------------- /src/Hotsync/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/serial.c -------------------------------------------------------------------------------- /src/Hotsync/slp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/slp.c -------------------------------------------------------------------------------- /src/Hotsync/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/socket.c -------------------------------------------------------------------------------- /src/Hotsync/srmserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/srmserial.c -------------------------------------------------------------------------------- /src/Hotsync/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/sys.c -------------------------------------------------------------------------------- /src/Hotsync/syspkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/syspkt.c -------------------------------------------------------------------------------- /src/Hotsync/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/system.h -------------------------------------------------------------------------------- /src/Hotsync/tAIB.1000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/tAIB.1000 -------------------------------------------------------------------------------- /src/Hotsync/tAIB.1001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/tAIB.1001 -------------------------------------------------------------------------------- /src/Hotsync/userland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/userland.c -------------------------------------------------------------------------------- /src/Hotsync/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Hotsync/utils.c -------------------------------------------------------------------------------- /src/Japanese/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Japanese/Makefile -------------------------------------------------------------------------------- /src/Japanese/japanese.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Japanese/japanese.c -------------------------------------------------------------------------------- /src/JsSyntax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/JsSyntax/Makefile -------------------------------------------------------------------------------- /src/JsSyntax/jssyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/JsSyntax/jssyntax.c -------------------------------------------------------------------------------- /src/Launcher/68k10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/68k10.bmp -------------------------------------------------------------------------------- /src/Launcher/68k20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/68k20.bmp -------------------------------------------------------------------------------- /src/Launcher/Launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/Launcher.c -------------------------------------------------------------------------------- /src/Launcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/Makefile -------------------------------------------------------------------------------- /src/Launcher/editbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/editbin.c -------------------------------------------------------------------------------- /src/Launcher/editbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/editbmp.c -------------------------------------------------------------------------------- /src/Launcher/editform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/editform.c -------------------------------------------------------------------------------- /src/Launcher/editreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/editreg.c -------------------------------------------------------------------------------- /src/Launcher/editreg.h: -------------------------------------------------------------------------------- 1 | Boolean editRegistry(FormType *frm, UInt32 creator, char *name); 2 | -------------------------------------------------------------------------------- /src/Launcher/editstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/editstr.c -------------------------------------------------------------------------------- /src/Launcher/editsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/editsurf.c -------------------------------------------------------------------------------- /src/Launcher/editsurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/editsurf.h -------------------------------------------------------------------------------- /src/Launcher/fakeH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/fakeH.txt -------------------------------------------------------------------------------- /src/Launcher/fakeL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/fakeL.txt -------------------------------------------------------------------------------- /src/Launcher/move15.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/move15.bmp -------------------------------------------------------------------------------- /src/Launcher/move30.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/move30.bmp -------------------------------------------------------------------------------- /src/Launcher/next15.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/next15.bmp -------------------------------------------------------------------------------- /src/Launcher/next30.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/next30.bmp -------------------------------------------------------------------------------- /src/Launcher/ok20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/ok20.bmp -------------------------------------------------------------------------------- /src/Launcher/resedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/resedit.h -------------------------------------------------------------------------------- /src/Launcher/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Launcher/resource.h -------------------------------------------------------------------------------- /src/LuaSyntax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/LuaSyntax/Makefile -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/MemoPad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/Makefile -------------------------------------------------------------------------------- /src/MemoPad/MemoDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/MemoDB.c -------------------------------------------------------------------------------- /src/MemoPad/MemoDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/MemoDB.h -------------------------------------------------------------------------------- /src/MemoPad/MemoMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/MemoMain.c -------------------------------------------------------------------------------- /src/MemoPad/MemoMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/MemoMain.h -------------------------------------------------------------------------------- /src/MemoPad/MemoRsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/MemoRsc.c -------------------------------------------------------------------------------- /src/MemoPad/MemoRsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/MemoRsc.h -------------------------------------------------------------------------------- /src/MemoPad/resources/tAIN03e8.dat: -------------------------------------------------------------------------------- 1 | Memo Pad -------------------------------------------------------------------------------- /src/MemoPad/resources/tSTR0064.dat: -------------------------------------------------------------------------------- 1 | Memos -------------------------------------------------------------------------------- /src/MemoPad/resources/tSTR03e8.dat: -------------------------------------------------------------------------------- 1 | a memo -------------------------------------------------------------------------------- /src/MemoPad/resources/tSTR03e9.dat: -------------------------------------------------------------------------------- 1 | Memo.txt -------------------------------------------------------------------------------- /src/MemoPad/resources/tSTR03ea.dat: -------------------------------------------------------------------------------- 1 | Memo -------------------------------------------------------------------------------- /src/MemoPad/resources/tSTR0458.dat: -------------------------------------------------------------------------------- 1 | Memo ^0 of ^1 -------------------------------------------------------------------------------- /src/MemoPad/resources/taic03e8.dat: -------------------------------------------------------------------------------- 1 | Main -------------------------------------------------------------------------------- /src/MemoPad/resources/tver0001.dat: -------------------------------------------------------------------------------- 1 | 4.5 -------------------------------------------------------------------------------- /src/MemoPad/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MemoPad/sections.h -------------------------------------------------------------------------------- /src/MineHunt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MineHunt/Makefile -------------------------------------------------------------------------------- /src/MineHunt/Mine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MineHunt/Mine.h -------------------------------------------------------------------------------- /src/MineHunt/MineApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MineHunt/MineApp.c -------------------------------------------------------------------------------- /src/MineHunt/MineRsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MineHunt/MineRsc.h -------------------------------------------------------------------------------- /src/MinimalZig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MinimalZig/Makefile -------------------------------------------------------------------------------- /src/MinimalZig/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MinimalZig/main.zig -------------------------------------------------------------------------------- /src/MinimalZig/zigh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MinimalZig/zigh.bmp -------------------------------------------------------------------------------- /src/MinimalZig/zigl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/MinimalZig/zigl.bmp -------------------------------------------------------------------------------- /src/PalmOS/PalmOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/PalmOS/PalmOS.h -------------------------------------------------------------------------------- /src/PalmOS/PalmTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/PalmOS/PalmTypes.h -------------------------------------------------------------------------------- /src/PalmOS/PalmUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/PalmOS/PalmUtils.h -------------------------------------------------------------------------------- /src/S2nPlugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/S2nPlugin/Makefile -------------------------------------------------------------------------------- /src/ToDoList/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/Makefile -------------------------------------------------------------------------------- /src/ToDoList/ToDo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/ToDo.c -------------------------------------------------------------------------------- /src/ToDoList/ToDo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/ToDo.h -------------------------------------------------------------------------------- /src/ToDoList/ToDoDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/ToDoDB.c -------------------------------------------------------------------------------- /src/ToDoList/ToDoDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/ToDoDB.h -------------------------------------------------------------------------------- /src/ToDoList/ToDoRsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/ToDoRsc.c -------------------------------------------------------------------------------- /src/ToDoList/ToDoRsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/ToDoRsc.h -------------------------------------------------------------------------------- /src/ToDoList/record.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/record.txt -------------------------------------------------------------------------------- /src/ToDoList/resources/tAIN03e8.dat: -------------------------------------------------------------------------------- 1 | To Do List -------------------------------------------------------------------------------- /src/ToDoList/resources/tSTR0064.dat: -------------------------------------------------------------------------------- 1 | To Do Items -------------------------------------------------------------------------------- /src/ToDoList/resources/tSTR0065.dat: -------------------------------------------------------------------------------- 1 | Due Date -------------------------------------------------------------------------------- /src/ToDoList/resources/tSTR03e8.dat: -------------------------------------------------------------------------------- 1 | a to do -------------------------------------------------------------------------------- /src/ToDoList/resources/tSTR03e9.dat: -------------------------------------------------------------------------------- 1 | ToDo.vcs -------------------------------------------------------------------------------- /src/ToDoList/resources/taic03e8.dat: -------------------------------------------------------------------------------- 1 | Main -------------------------------------------------------------------------------- /src/ToDoList/resources/tver0001.dat: -------------------------------------------------------------------------------- 1 | 4.0 -------------------------------------------------------------------------------- /src/ToDoList/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/ToDoList/sections.h -------------------------------------------------------------------------------- /src/WebServer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/WebServer/Makefile -------------------------------------------------------------------------------- /src/WebServer/ok20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/WebServer/ok20.bmp -------------------------------------------------------------------------------- /src/Widgets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Widgets/Makefile -------------------------------------------------------------------------------- /src/Widgets/Widgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Widgets/Widgets.c -------------------------------------------------------------------------------- /src/Widgets/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Widgets/resource.h -------------------------------------------------------------------------------- /src/Widgets/widget1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Widgets/widget1.bmp -------------------------------------------------------------------------------- /src/Widgets/widget2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/Widgets/widget2.bmp -------------------------------------------------------------------------------- /src/app.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/app.mak -------------------------------------------------------------------------------- /src/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/common.mak -------------------------------------------------------------------------------- /src/commonp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/commonp.mak -------------------------------------------------------------------------------- /src/duktape/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/AUTHORS.rst -------------------------------------------------------------------------------- /src/duktape/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/LICENSE.txt -------------------------------------------------------------------------------- /src/duktape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/Makefile -------------------------------------------------------------------------------- /src/duktape/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/README.rst -------------------------------------------------------------------------------- /src/duktape/duk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk.sh -------------------------------------------------------------------------------- /src/duktape/duk_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_debug.h -------------------------------------------------------------------------------- /src/duktape/duk_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_error.h -------------------------------------------------------------------------------- /src/duktape/duk_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_heap.h -------------------------------------------------------------------------------- /src/duktape/duk_henv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_henv.h -------------------------------------------------------------------------------- /src/duktape/duk_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_js.h -------------------------------------------------------------------------------- /src/duktape/duk_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_json.h -------------------------------------------------------------------------------- /src/duktape/duk_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_lexer.c -------------------------------------------------------------------------------- /src/duktape/duk_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_lexer.h -------------------------------------------------------------------------------- /src/duktape/duk_tval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_tval.c -------------------------------------------------------------------------------- /src/duktape/duk_tval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_tval.h -------------------------------------------------------------------------------- /src/duktape/duk_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duk_util.h -------------------------------------------------------------------------------- /src/duktape/duktape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/duktape.h -------------------------------------------------------------------------------- /src/duktape/script_js.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/duktape/script_js.c -------------------------------------------------------------------------------- /src/emscripten/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/emscripten/Makefile -------------------------------------------------------------------------------- /src/emscripten/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/emscripten/main.c -------------------------------------------------------------------------------- /src/emscripten/server.sh: -------------------------------------------------------------------------------- 1 | python3 -m http.server 8080 2 | -------------------------------------------------------------------------------- /src/emscripten/vfs/app_install/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/font/font10x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/font10x16.h -------------------------------------------------------------------------------- /src/font/font16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/font16x16.h -------------------------------------------------------------------------------- /src/font/font5x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/font5x8.h -------------------------------------------------------------------------------- /src/font/font6x8apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/font6x8apple.h -------------------------------------------------------------------------------- /src/font/font6x8coco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/font6x8coco.h -------------------------------------------------------------------------------- /src/font/font8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/font8x8.h -------------------------------------------------------------------------------- /src/font/font8x8zx81.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/font8x8zx81.h -------------------------------------------------------------------------------- /src/font/palm2pfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/palm2pfont.c -------------------------------------------------------------------------------- /src/font/pfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/font/pfont.h -------------------------------------------------------------------------------- /src/forc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/Makefile -------------------------------------------------------------------------------- /src/forc/assembler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/assembler.c -------------------------------------------------------------------------------- /src/forc/assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/assembler.h -------------------------------------------------------------------------------- /src/forc/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/buffer.c -------------------------------------------------------------------------------- /src/forc/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/buffer.h -------------------------------------------------------------------------------- /src/forc/error.h: -------------------------------------------------------------------------------- 1 | int system_error(char *fmt, ...); 2 | -------------------------------------------------------------------------------- /src/forc/findargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/findargs.c -------------------------------------------------------------------------------- /src/forc/findargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/findargs.h -------------------------------------------------------------------------------- /src/forc/forc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/forc.c -------------------------------------------------------------------------------- /src/forc/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/heap.c -------------------------------------------------------------------------------- /src/forc/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/heap.h -------------------------------------------------------------------------------- /src/forc/ht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/ht.c -------------------------------------------------------------------------------- /src/forc/ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/ht.h -------------------------------------------------------------------------------- /src/forc/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/lexer.c -------------------------------------------------------------------------------- /src/forc/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/lexer.h -------------------------------------------------------------------------------- /src/forc/linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/linker.c -------------------------------------------------------------------------------- /src/forc/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/linker.h -------------------------------------------------------------------------------- /src/forc/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/parser.c -------------------------------------------------------------------------------- /src/forc/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/parser.h -------------------------------------------------------------------------------- /src/forc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/resource.h -------------------------------------------------------------------------------- /src/forc/resource.rcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/resource.rcp -------------------------------------------------------------------------------- /src/forc/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/run.c -------------------------------------------------------------------------------- /src/forc/run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/run.h -------------------------------------------------------------------------------- /src/forc/section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/section.c -------------------------------------------------------------------------------- /src/forc/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/section.h -------------------------------------------------------------------------------- /src/forc/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/symbol.h -------------------------------------------------------------------------------- /src/forc/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/type.c -------------------------------------------------------------------------------- /src/forc/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/forc/type.h -------------------------------------------------------------------------------- /src/jpeg-8d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/Makefile -------------------------------------------------------------------------------- /src/jpeg-8d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/README -------------------------------------------------------------------------------- /src/jpeg-8d/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/cderror.h -------------------------------------------------------------------------------- /src/jpeg-8d/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/cdjpeg.c -------------------------------------------------------------------------------- /src/jpeg-8d/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/cdjpeg.h -------------------------------------------------------------------------------- /src/jpeg-8d/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/ckconfig.c -------------------------------------------------------------------------------- /src/jpeg-8d/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/example.c -------------------------------------------------------------------------------- /src/jpeg-8d/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/install.txt -------------------------------------------------------------------------------- /src/jpeg-8d/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jaricom.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcapimin.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcapistd.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcarith.c -------------------------------------------------------------------------------- /src/jpeg-8d/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jccoefct.c -------------------------------------------------------------------------------- /src/jpeg-8d/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jccolor.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcdctmgr.c -------------------------------------------------------------------------------- /src/jpeg-8d/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jchuff.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcinit.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcmainct.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcmarker.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcmaster.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcomapi.c -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.bcc -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.cfg -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.h -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.mac -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.mc6 -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.sas -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.st -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.txt -------------------------------------------------------------------------------- /src/jpeg-8d/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jconfig.vc -------------------------------------------------------------------------------- /src/jpeg-8d/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcparam.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcprepct.c -------------------------------------------------------------------------------- /src/jpeg-8d/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jcsample.c -------------------------------------------------------------------------------- /src/jpeg-8d/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jctrans.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdapimin.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdapistd.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdarith.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdatadst.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdatasrc.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdcoefct.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdcolor.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdct.h -------------------------------------------------------------------------------- /src/jpeg-8d/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jddctmgr.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdhuff.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdinput.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdmainct.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdmarker.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdmaster.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdmerge.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdpostct.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdsample.c -------------------------------------------------------------------------------- /src/jpeg-8d/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jdtrans.c -------------------------------------------------------------------------------- /src/jpeg-8d/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jerror.c -------------------------------------------------------------------------------- /src/jpeg-8d/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jerror.h -------------------------------------------------------------------------------- /src/jpeg-8d/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jfdctflt.c -------------------------------------------------------------------------------- /src/jpeg-8d/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jfdctfst.c -------------------------------------------------------------------------------- /src/jpeg-8d/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jfdctint.c -------------------------------------------------------------------------------- /src/jpeg-8d/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jidctflt.c -------------------------------------------------------------------------------- /src/jpeg-8d/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jidctfst.c -------------------------------------------------------------------------------- /src/jpeg-8d/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jidctint.c -------------------------------------------------------------------------------- /src/jpeg-8d/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jinclude.h -------------------------------------------------------------------------------- /src/jpeg-8d/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmemansi.c -------------------------------------------------------------------------------- /src/jpeg-8d/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmemdos.c -------------------------------------------------------------------------------- /src/jpeg-8d/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmemmac.c -------------------------------------------------------------------------------- /src/jpeg-8d/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmemmgr.c -------------------------------------------------------------------------------- /src/jpeg-8d/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmemname.c -------------------------------------------------------------------------------- /src/jpeg-8d/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmemnobs.c -------------------------------------------------------------------------------- /src/jpeg-8d/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmemsys.h -------------------------------------------------------------------------------- /src/jpeg-8d/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jmorecfg.h -------------------------------------------------------------------------------- /src/jpeg-8d/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jpegint.h -------------------------------------------------------------------------------- /src/jpeg-8d/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jpeglib.h -------------------------------------------------------------------------------- /src/jpeg-8d/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jquant1.c -------------------------------------------------------------------------------- /src/jpeg-8d/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jquant2.c -------------------------------------------------------------------------------- /src/jpeg-8d/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jutils.c -------------------------------------------------------------------------------- /src/jpeg-8d/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/jversion.h -------------------------------------------------------------------------------- /src/jpeg-8d/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/libjpeg.txt -------------------------------------------------------------------------------- /src/jpeg-8d/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/makcjpeg.st -------------------------------------------------------------------------------- /src/jpeg-8d/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/makdjpeg.st -------------------------------------------------------------------------------- /src/jpeg-8d/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/makefile.vc -------------------------------------------------------------------------------- /src/jpeg-8d/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/makljpeg.st -------------------------------------------------------------------------------- /src/jpeg-8d/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/maktjpeg.st -------------------------------------------------------------------------------- /src/jpeg-8d/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/makvms.opt -------------------------------------------------------------------------------- /src/jpeg-8d/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/rdbmp.c -------------------------------------------------------------------------------- /src/jpeg-8d/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/rdcolmap.c -------------------------------------------------------------------------------- /src/jpeg-8d/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/rdgif.c -------------------------------------------------------------------------------- /src/jpeg-8d/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/rdppm.c -------------------------------------------------------------------------------- /src/jpeg-8d/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/rdrle.c -------------------------------------------------------------------------------- /src/jpeg-8d/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/rdswitch.c -------------------------------------------------------------------------------- /src/jpeg-8d/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/rdtarga.c -------------------------------------------------------------------------------- /src/jpeg-8d/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for jconfig.h 2 | -------------------------------------------------------------------------------- /src/jpeg-8d/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/transupp.c -------------------------------------------------------------------------------- /src/jpeg-8d/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/transupp.h -------------------------------------------------------------------------------- /src/jpeg-8d/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/usage.txt -------------------------------------------------------------------------------- /src/jpeg-8d/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/wizard.txt -------------------------------------------------------------------------------- /src/jpeg-8d/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/wrbmp.c -------------------------------------------------------------------------------- /src/jpeg-8d/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/wrgif.c -------------------------------------------------------------------------------- /src/jpeg-8d/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/wrppm.c -------------------------------------------------------------------------------- /src/jpeg-8d/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/wrrle.c -------------------------------------------------------------------------------- /src/jpeg-8d/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/jpeg-8d/wrtarga.c -------------------------------------------------------------------------------- /src/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/Makefile -------------------------------------------------------------------------------- /src/kernel/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/boot.S -------------------------------------------------------------------------------- /src/kernel/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/disk.c -------------------------------------------------------------------------------- /src/kernel/disk.h: -------------------------------------------------------------------------------- 1 | void disk_init(void); 2 | -------------------------------------------------------------------------------- /src/kernel/diskbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/diskbin.txt -------------------------------------------------------------------------------- /src/kernel/kernel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/kernel.txt -------------------------------------------------------------------------------- /src/kernel/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/link.ld -------------------------------------------------------------------------------- /src/kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/main.c -------------------------------------------------------------------------------- /src/kernel/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/kernel/script.c -------------------------------------------------------------------------------- /src/lib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lib.mak -------------------------------------------------------------------------------- /src/libaalsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libaalsa/Makefile -------------------------------------------------------------------------------- /src/libaalsa/libaalsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libaalsa/libaalsa.c -------------------------------------------------------------------------------- /src/libapulse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libapulse/Makefile -------------------------------------------------------------------------------- /src/libbcm2835/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libbcm2835/Makefile -------------------------------------------------------------------------------- /src/libchipmunk/prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libchipmunk/prime.h -------------------------------------------------------------------------------- /src/libemulation/asm/bye.asm: -------------------------------------------------------------------------------- 1 | include "io.inc" 2 | 3 | org 0100h 4 | io_out 7FH 5 | -------------------------------------------------------------------------------- /src/libemulation/cas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/cas.c -------------------------------------------------------------------------------- /src/libemulation/cas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/cas.h -------------------------------------------------------------------------------- /src/libemulation/coco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/coco.c -------------------------------------------------------------------------------- /src/libemulation/coco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/coco.h -------------------------------------------------------------------------------- /src/libemulation/cpm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/cpm3.c -------------------------------------------------------------------------------- /src/libemulation/cpm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/cpm3.h -------------------------------------------------------------------------------- /src/libemulation/cz80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/cz80.c -------------------------------------------------------------------------------- /src/libemulation/cz80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/cz80.h -------------------------------------------------------------------------------- /src/libemulation/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/disk.c -------------------------------------------------------------------------------- /src/libemulation/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/disk.h -------------------------------------------------------------------------------- /src/libemulation/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/rom.c -------------------------------------------------------------------------------- /src/libemulation/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/rom.h -------------------------------------------------------------------------------- /src/libemulation/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/run -------------------------------------------------------------------------------- /src/libemulation/vdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/vdg.c -------------------------------------------------------------------------------- /src/libemulation/vdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/vdg.h -------------------------------------------------------------------------------- /src/libemulation/z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/z80.c -------------------------------------------------------------------------------- /src/libemulation/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/z80.h -------------------------------------------------------------------------------- /src/libemulation/z80disasm.h: -------------------------------------------------------------------------------- 1 | int z80_disasm(computer_t *c, uint16_t pc); 2 | -------------------------------------------------------------------------------- /src/libemulation/zx81.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/zx81.c -------------------------------------------------------------------------------- /src/libemulation/zx81.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libemulation/zx81.h -------------------------------------------------------------------------------- /src/libfatfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfatfs/Makefile -------------------------------------------------------------------------------- /src/libfatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfatfs/diskio.h -------------------------------------------------------------------------------- /src/libfatfs/fatfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfatfs/fatfs -------------------------------------------------------------------------------- /src/libfatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfatfs/ff.c -------------------------------------------------------------------------------- /src/libfatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfatfs/ff.h -------------------------------------------------------------------------------- /src/libfatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfatfs/ffconf.h -------------------------------------------------------------------------------- /src/libfb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfb/Makefile -------------------------------------------------------------------------------- /src/libfb/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfb/cursor.c -------------------------------------------------------------------------------- /src/libfb/libfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libfb/libfb.c -------------------------------------------------------------------------------- /src/libgpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/Makefile -------------------------------------------------------------------------------- /src/libgpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpio.c -------------------------------------------------------------------------------- /src/libgpio/gpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpio.sh -------------------------------------------------------------------------------- /src/libgpio/gpiobcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpiobcm.c -------------------------------------------------------------------------------- /src/libgpio/gpiobcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpiobcm.h -------------------------------------------------------------------------------- /src/libgpio/gpiomem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpiomem.c -------------------------------------------------------------------------------- /src/libgpio/gpiomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpiomem.h -------------------------------------------------------------------------------- /src/libgpio/gpiosys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpiosys.c -------------------------------------------------------------------------------- /src/libgpio/gpiosys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/gpiosys.h -------------------------------------------------------------------------------- /src/libgpio/libgpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libgpio/libgpio.c -------------------------------------------------------------------------------- /src/libili9486/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libili9486/Makefile -------------------------------------------------------------------------------- /src/libls2n/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libls2n/Makefile -------------------------------------------------------------------------------- /src/libls2n/libls2n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libls2n/libls2n.c -------------------------------------------------------------------------------- /src/liblsdl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liblsdl2/Makefile -------------------------------------------------------------------------------- /src/liblsdl2/liblsdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liblsdl2/liblsdl2.c -------------------------------------------------------------------------------- /src/liblsdl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liblsdl3/Makefile -------------------------------------------------------------------------------- /src/liblsdl3/liblsdl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liblsdl3/liblsdl3.c -------------------------------------------------------------------------------- /src/libos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libos/Makefile -------------------------------------------------------------------------------- /src/libos/libos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libos/libos.c -------------------------------------------------------------------------------- /src/liboshell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liboshell/Makefile -------------------------------------------------------------------------------- /src/liboshell/oshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liboshell/oshell.c -------------------------------------------------------------------------------- /src/liboshell/oshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liboshell/oshell.h -------------------------------------------------------------------------------- /src/liboshell/wshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/liboshell/wshell.c -------------------------------------------------------------------------------- /src/libpit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/Makefile -------------------------------------------------------------------------------- /src/libpit/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/audio.h -------------------------------------------------------------------------------- /src/libpit/average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/average.c -------------------------------------------------------------------------------- /src/libpit/average.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/average.h -------------------------------------------------------------------------------- /src/libpit/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/bmp.c -------------------------------------------------------------------------------- /src/libpit/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/bmp.h -------------------------------------------------------------------------------- /src/libpit/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/bsearch.c -------------------------------------------------------------------------------- /src/libpit/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/builtin.c -------------------------------------------------------------------------------- /src/libpit/bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/bytes.c -------------------------------------------------------------------------------- /src/libpit/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/bytes.h -------------------------------------------------------------------------------- /src/libpit/ctelnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ctelnet.c -------------------------------------------------------------------------------- /src/libpit/ctelnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ctelnet.h -------------------------------------------------------------------------------- /src/libpit/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ctype.c -------------------------------------------------------------------------------- /src/libpit/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/debug.c -------------------------------------------------------------------------------- /src/libpit/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/debug.h -------------------------------------------------------------------------------- /src/libpit/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/display.h -------------------------------------------------------------------------------- /src/libpit/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/editor.h -------------------------------------------------------------------------------- /src/libpit/endianness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/endianness.c -------------------------------------------------------------------------------- /src/libpit/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/endianness.h -------------------------------------------------------------------------------- /src/libpit/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/filter.c -------------------------------------------------------------------------------- /src/libpit/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/filter.h -------------------------------------------------------------------------------- /src/libpit/findargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/findargs.c -------------------------------------------------------------------------------- /src/libpit/findargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/findargs.h -------------------------------------------------------------------------------- /src/libpit/floatscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/floatscan.c -------------------------------------------------------------------------------- /src/libpit/floatscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/floatscan.h -------------------------------------------------------------------------------- /src/libpit/fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/fmodl.c -------------------------------------------------------------------------------- /src/libpit/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/gpio.h -------------------------------------------------------------------------------- /src/libpit/gps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/gps.c -------------------------------------------------------------------------------- /src/libpit/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/gps.h -------------------------------------------------------------------------------- /src/libpit/graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/graphic.c -------------------------------------------------------------------------------- /src/libpit/graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/graphic.h -------------------------------------------------------------------------------- /src/libpit/httpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/httpc.c -------------------------------------------------------------------------------- /src/libpit/httpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/httpc.h -------------------------------------------------------------------------------- /src/libpit/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/httpd.c -------------------------------------------------------------------------------- /src/libpit/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/httpd.h -------------------------------------------------------------------------------- /src/libpit/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/i2c.h -------------------------------------------------------------------------------- /src/libpit/intscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/intscan.c -------------------------------------------------------------------------------- /src/libpit/intscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/intscan.h -------------------------------------------------------------------------------- /src/libpit/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/io.c -------------------------------------------------------------------------------- /src/libpit/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/iterator.h -------------------------------------------------------------------------------- /src/libpit/ldshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ldshape.h -------------------------------------------------------------------------------- /src/libpit/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/list.c -------------------------------------------------------------------------------- /src/libpit/loadfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/loadfile.c -------------------------------------------------------------------------------- /src/libpit/loadfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/loadfile.h -------------------------------------------------------------------------------- /src/libpit/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/login.c -------------------------------------------------------------------------------- /src/libpit/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/login.h -------------------------------------------------------------------------------- /src/libpit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/main.c -------------------------------------------------------------------------------- /src/libpit/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/main.h -------------------------------------------------------------------------------- /src/libpit/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/malloc.c -------------------------------------------------------------------------------- /src/libpit/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/math.c -------------------------------------------------------------------------------- /src/libpit/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/media.c -------------------------------------------------------------------------------- /src/libpit/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/media.h -------------------------------------------------------------------------------- /src/libpit/meters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/meters.h -------------------------------------------------------------------------------- /src/libpit/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/mime.h -------------------------------------------------------------------------------- /src/libpit/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/mutex.c -------------------------------------------------------------------------------- /src/libpit/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/mutex.h -------------------------------------------------------------------------------- /src/libpit/mutexnull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/mutexnull.c -------------------------------------------------------------------------------- /src/libpit/mutexsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/mutexsc.c -------------------------------------------------------------------------------- /src/libpit/pit_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/pit_io.h -------------------------------------------------------------------------------- /src/libpit/plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/plist.h -------------------------------------------------------------------------------- /src/libpit/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/printf.c -------------------------------------------------------------------------------- /src/libpit/pscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/pscale.h -------------------------------------------------------------------------------- /src/libpit/pspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/pspi.h -------------------------------------------------------------------------------- /src/libpit/pterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/pterm.c -------------------------------------------------------------------------------- /src/libpit/pterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/pterm.h -------------------------------------------------------------------------------- /src/libpit/ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ptr.c -------------------------------------------------------------------------------- /src/libpit/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ptr.h -------------------------------------------------------------------------------- /src/libpit/pwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/pwindow.h -------------------------------------------------------------------------------- /src/libpit/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/qsort.c -------------------------------------------------------------------------------- /src/libpit/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/qsort.h -------------------------------------------------------------------------------- /src/libpit/rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/rgb.c -------------------------------------------------------------------------------- /src/libpit/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/rgb.h -------------------------------------------------------------------------------- /src/libpit/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/script.c -------------------------------------------------------------------------------- /src/libpit/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/script.h -------------------------------------------------------------------------------- /src/libpit/secure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/secure.h -------------------------------------------------------------------------------- /src/libpit/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/shell.h -------------------------------------------------------------------------------- /src/libpit/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/sig.c -------------------------------------------------------------------------------- /src/libpit/sig.h: -------------------------------------------------------------------------------- 1 | void signal_install_handlers(void); 2 | -------------------------------------------------------------------------------- /src/libpit/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/sock.c -------------------------------------------------------------------------------- /src/libpit/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/sock.h -------------------------------------------------------------------------------- /src/libpit/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/stb_image.h -------------------------------------------------------------------------------- /src/libpit/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/string.c -------------------------------------------------------------------------------- /src/libpit/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/strtod.c -------------------------------------------------------------------------------- /src/libpit/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/strtol.c -------------------------------------------------------------------------------- /src/libpit/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/strtoul.c -------------------------------------------------------------------------------- /src/libpit/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/surface.c -------------------------------------------------------------------------------- /src/libpit/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/surface.h -------------------------------------------------------------------------------- /src/libpit/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/sys.c -------------------------------------------------------------------------------- /src/libpit/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/sys.h -------------------------------------------------------------------------------- /src/libpit/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/telnet.c -------------------------------------------------------------------------------- /src/libpit/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/telnet.h -------------------------------------------------------------------------------- /src/libpit/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/template.c -------------------------------------------------------------------------------- /src/libpit/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/template.h -------------------------------------------------------------------------------- /src/libpit/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/thread.h -------------------------------------------------------------------------------- /src/libpit/threadipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/threadipc.c -------------------------------------------------------------------------------- /src/libpit/threadnull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/threadnull.c -------------------------------------------------------------------------------- /src/libpit/threadptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/threadptr.c -------------------------------------------------------------------------------- /src/libpit/threadsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/threadsc.c -------------------------------------------------------------------------------- /src/libpit/threadudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/threadudp.c -------------------------------------------------------------------------------- /src/libpit/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/time.c -------------------------------------------------------------------------------- /src/libpit/timeutc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/timeutc.c -------------------------------------------------------------------------------- /src/libpit/timeutc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/timeutc.h -------------------------------------------------------------------------------- /src/libpit/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ts.c -------------------------------------------------------------------------------- /src/libpit/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/ts.h -------------------------------------------------------------------------------- /src/libpit/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/util.c -------------------------------------------------------------------------------- /src/libpit/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/util.h -------------------------------------------------------------------------------- /src/libpit/vfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vfont.c -------------------------------------------------------------------------------- /src/libpit/vfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vfont.h -------------------------------------------------------------------------------- /src/libpit/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vfs.c -------------------------------------------------------------------------------- /src/libpit/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vfs.h -------------------------------------------------------------------------------- /src/libpit/vfslocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vfslocal.c -------------------------------------------------------------------------------- /src/libpit/vfslocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vfslocal.h -------------------------------------------------------------------------------- /src/libpit/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vsnprintf.c -------------------------------------------------------------------------------- /src/libpit/vsnprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vsnprintf.h -------------------------------------------------------------------------------- /src/libpit/vsscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vsscanf.c -------------------------------------------------------------------------------- /src/libpit/vsscanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/vsscanf.h -------------------------------------------------------------------------------- /src/libpit/xalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/xalloc.c -------------------------------------------------------------------------------- /src/libpit/xalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/xalloc.h -------------------------------------------------------------------------------- /src/libpit/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/yuv.c -------------------------------------------------------------------------------- /src/libpit/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpit/yuv.h -------------------------------------------------------------------------------- /src/libpluto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpluto/Makefile -------------------------------------------------------------------------------- /src/libpluto/plutosvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpluto/plutosvg.c -------------------------------------------------------------------------------- /src/libpluto/plutosvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpluto/plutosvg.h -------------------------------------------------------------------------------- /src/libpluto/plutovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpluto/plutovg.c -------------------------------------------------------------------------------- /src/libpluto/plutovg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpluto/plutovg.h -------------------------------------------------------------------------------- /src/libpumpkin/Abt.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Abt.zig -------------------------------------------------------------------------------- /src/libpumpkin/Bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Bitmap.c -------------------------------------------------------------------------------- /src/libpumpkin/Bmp.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Bmp.zig -------------------------------------------------------------------------------- /src/libpumpkin/BtLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/BtLib.c -------------------------------------------------------------------------------- /src/libpumpkin/Chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Chat.c -------------------------------------------------------------------------------- /src/libpumpkin/Chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Chat.h -------------------------------------------------------------------------------- /src/libpumpkin/Crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Crc.c -------------------------------------------------------------------------------- /src/libpumpkin/Ctl.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Ctl.zig -------------------------------------------------------------------------------- /src/libpumpkin/DDm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/DDm.h -------------------------------------------------------------------------------- /src/libpumpkin/Day.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Day.c -------------------------------------------------------------------------------- /src/libpumpkin/Dm.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Dm.zig -------------------------------------------------------------------------------- /src/libpumpkin/Event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Event.c -------------------------------------------------------------------------------- /src/libpumpkin/Evt.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Evt.zig -------------------------------------------------------------------------------- /src/libpumpkin/ExgLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/ExgLib.c -------------------------------------------------------------------------------- /src/libpumpkin/ExgMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/ExgMgr.c -------------------------------------------------------------------------------- /src/libpumpkin/FSLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/FSLib.c -------------------------------------------------------------------------------- /src/libpumpkin/Field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Field.c -------------------------------------------------------------------------------- /src/libpumpkin/Find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Find.c -------------------------------------------------------------------------------- /src/libpumpkin/Fld.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Fld.zig -------------------------------------------------------------------------------- /src/libpumpkin/Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Font.c -------------------------------------------------------------------------------- /src/libpumpkin/Form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Form.c -------------------------------------------------------------------------------- /src/libpumpkin/Frm.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Frm.zig -------------------------------------------------------------------------------- /src/libpumpkin/GPDLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/GPDLib.c -------------------------------------------------------------------------------- /src/libpumpkin/GPDLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/GPDLib.h -------------------------------------------------------------------------------- /src/libpumpkin/HAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/HAL.c -------------------------------------------------------------------------------- /src/libpumpkin/IrLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/IrLib.c -------------------------------------------------------------------------------- /src/libpumpkin/KeyMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/KeyMgr.c -------------------------------------------------------------------------------- /src/libpumpkin/List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/List.c -------------------------------------------------------------------------------- /src/libpumpkin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Makefile -------------------------------------------------------------------------------- /src/libpumpkin/Mem.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Mem.zig -------------------------------------------------------------------------------- /src/libpumpkin/Menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Menu.c -------------------------------------------------------------------------------- /src/libpumpkin/Menu.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Menu.zig -------------------------------------------------------------------------------- /src/libpumpkin/NetMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/NetMgr.c -------------------------------------------------------------------------------- /src/libpumpkin/PdiLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/PdiLib.c -------------------------------------------------------------------------------- /src/libpumpkin/PenMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/PenMgr.c -------------------------------------------------------------------------------- /src/libpumpkin/Rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Rect.c -------------------------------------------------------------------------------- /src/libpumpkin/SelDay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/SelDay.c -------------------------------------------------------------------------------- /src/libpumpkin/SslLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/SslLib.c -------------------------------------------------------------------------------- /src/libpumpkin/Sys.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Sys.zig -------------------------------------------------------------------------------- /src/libpumpkin/Table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Table.c -------------------------------------------------------------------------------- /src/libpumpkin/UDAMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/UDAMgr.c -------------------------------------------------------------------------------- /src/libpumpkin/VFSMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/VFSMgr.c -------------------------------------------------------------------------------- /src/libpumpkin/Win.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Win.zig -------------------------------------------------------------------------------- /src/libpumpkin/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/Window.c -------------------------------------------------------------------------------- /src/libpumpkin/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/build.c -------------------------------------------------------------------------------- /src/libpumpkin/dia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/dia.c -------------------------------------------------------------------------------- /src/libpumpkin/dia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/dia.h -------------------------------------------------------------------------------- /src/libpumpkin/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/edit.c -------------------------------------------------------------------------------- /src/libpumpkin/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/edit.h -------------------------------------------------------------------------------- /src/libpumpkin/emulator.h: -------------------------------------------------------------------------------- 1 | UInt32 EmulatorMain(void); 2 | -------------------------------------------------------------------------------- /src/libpumpkin/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/fill.c -------------------------------------------------------------------------------- /src/libpumpkin/fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/fill.h -------------------------------------------------------------------------------- /src/libpumpkin/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/heap.h -------------------------------------------------------------------------------- /src/libpumpkin/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/md5.c -------------------------------------------------------------------------------- /src/libpumpkin/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/md5.h -------------------------------------------------------------------------------- /src/libpumpkin/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/puff.c -------------------------------------------------------------------------------- /src/libpumpkin/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/puff.h -------------------------------------------------------------------------------- /src/libpumpkin/pumpkin_syscall_id.h: -------------------------------------------------------------------------------- 1 | #define sysCallBase 0x10000 2 | -------------------------------------------------------------------------------- /src/libpumpkin/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/sha1.c -------------------------------------------------------------------------------- /src/libpumpkin/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/sha1.h -------------------------------------------------------------------------------- /src/libpumpkin/ssfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/ssfn.h -------------------------------------------------------------------------------- /src/libpumpkin/wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/wav.c -------------------------------------------------------------------------------- /src/libpumpkin/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/wav.h -------------------------------------------------------------------------------- /src/libpumpkin/wman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/wman.c -------------------------------------------------------------------------------- /src/libpumpkin/wman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libpumpkin/wman.h -------------------------------------------------------------------------------- /src/libray/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libray/Makefile -------------------------------------------------------------------------------- /src/libray/libray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libray/libray.c -------------------------------------------------------------------------------- /src/libshell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libshell/Makefile -------------------------------------------------------------------------------- /src/libspi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libspi/Makefile -------------------------------------------------------------------------------- /src/libspi/libspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libspi/libspi.c -------------------------------------------------------------------------------- /src/libspi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libspi/spi.c -------------------------------------------------------------------------------- /src/libspi/spi_bcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libspi/spi_bcm.c -------------------------------------------------------------------------------- /src/libspi/spi_bcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libspi/spi_bcm.h -------------------------------------------------------------------------------- /src/libwwayland/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libwwayland/shm.c -------------------------------------------------------------------------------- /src/libwwayland/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libwwayland/shm.h -------------------------------------------------------------------------------- /src/libwxcb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libwxcb/Makefile -------------------------------------------------------------------------------- /src/libwxcb/libwxcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libwxcb/libwxcb.c -------------------------------------------------------------------------------- /src/libzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/Makefile -------------------------------------------------------------------------------- /src/libzip/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/compat.h -------------------------------------------------------------------------------- /src/libzip/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/config.h -------------------------------------------------------------------------------- /src/libzip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zip.h -------------------------------------------------------------------------------- /src/libzip/zip_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zip_add.c -------------------------------------------------------------------------------- /src/libzip/zip_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zip_hash.c -------------------------------------------------------------------------------- /src/libzip/zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zip_new.c -------------------------------------------------------------------------------- /src/libzip/zip_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zip_open.c -------------------------------------------------------------------------------- /src/libzip/zip_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zip_stat.c -------------------------------------------------------------------------------- /src/libzip/zipconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zipconf.h -------------------------------------------------------------------------------- /src/libzip/zipint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzip/zipint.h -------------------------------------------------------------------------------- /src/libzycore/List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzycore/List.c -------------------------------------------------------------------------------- /src/libzydis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzydis/Makefile -------------------------------------------------------------------------------- /src/libzydis/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzydis/String.c -------------------------------------------------------------------------------- /src/libzydis/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzydis/Utils.c -------------------------------------------------------------------------------- /src/libzydis/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/libzydis/Zydis.c -------------------------------------------------------------------------------- /src/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/linux/Makefile -------------------------------------------------------------------------------- /src/linux/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/linux/main.c -------------------------------------------------------------------------------- /src/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/Makefile -------------------------------------------------------------------------------- /src/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lapi.c -------------------------------------------------------------------------------- /src/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lapi.h -------------------------------------------------------------------------------- /src/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lauxlib.c -------------------------------------------------------------------------------- /src/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lauxlib.h -------------------------------------------------------------------------------- /src/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lbaselib.c -------------------------------------------------------------------------------- /src/lua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lbitlib.c -------------------------------------------------------------------------------- /src/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lcode.c -------------------------------------------------------------------------------- /src/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lcode.h -------------------------------------------------------------------------------- /src/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lcorolib.c -------------------------------------------------------------------------------- /src/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lctype.c -------------------------------------------------------------------------------- /src/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lctype.h -------------------------------------------------------------------------------- /src/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ldblib.c -------------------------------------------------------------------------------- /src/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ldebug.c -------------------------------------------------------------------------------- /src/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ldebug.h -------------------------------------------------------------------------------- /src/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ldo.c -------------------------------------------------------------------------------- /src/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ldo.h -------------------------------------------------------------------------------- /src/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ldump.c -------------------------------------------------------------------------------- /src/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lfunc.c -------------------------------------------------------------------------------- /src/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lfunc.h -------------------------------------------------------------------------------- /src/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lgc.c -------------------------------------------------------------------------------- /src/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lgc.h -------------------------------------------------------------------------------- /src/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/linit.c -------------------------------------------------------------------------------- /src/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/liolib.c -------------------------------------------------------------------------------- /src/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/llex.c -------------------------------------------------------------------------------- /src/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/llex.h -------------------------------------------------------------------------------- /src/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/llimits.h -------------------------------------------------------------------------------- /src/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lmathlib.c -------------------------------------------------------------------------------- /src/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lmem.c -------------------------------------------------------------------------------- /src/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lmem.h -------------------------------------------------------------------------------- /src/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/loadlib.c -------------------------------------------------------------------------------- /src/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lobject.c -------------------------------------------------------------------------------- /src/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lobject.h -------------------------------------------------------------------------------- /src/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lopcodes.c -------------------------------------------------------------------------------- /src/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lopcodes.h -------------------------------------------------------------------------------- /src/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/loslib.c -------------------------------------------------------------------------------- /src/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lparser.c -------------------------------------------------------------------------------- /src/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lparser.h -------------------------------------------------------------------------------- /src/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lprefix.h -------------------------------------------------------------------------------- /src/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lstate.c -------------------------------------------------------------------------------- /src/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lstate.h -------------------------------------------------------------------------------- /src/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lstring.c -------------------------------------------------------------------------------- /src/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lstring.h -------------------------------------------------------------------------------- /src/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lstrlib.c -------------------------------------------------------------------------------- /src/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ltable.c -------------------------------------------------------------------------------- /src/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ltable.h -------------------------------------------------------------------------------- /src/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ltablib.c -------------------------------------------------------------------------------- /src/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ltm.c -------------------------------------------------------------------------------- /src/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/ltm.h -------------------------------------------------------------------------------- /src/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lua.c -------------------------------------------------------------------------------- /src/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lua.h -------------------------------------------------------------------------------- /src/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lua.hpp -------------------------------------------------------------------------------- /src/lua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/luac.c -------------------------------------------------------------------------------- /src/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/luaconf.h -------------------------------------------------------------------------------- /src/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lualib.h -------------------------------------------------------------------------------- /src/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lundump.c -------------------------------------------------------------------------------- /src/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lundump.h -------------------------------------------------------------------------------- /src/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lutf8lib.c -------------------------------------------------------------------------------- /src/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lvm.c -------------------------------------------------------------------------------- /src/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lvm.h -------------------------------------------------------------------------------- /src/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lzio.c -------------------------------------------------------------------------------- /src/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/lzio.h -------------------------------------------------------------------------------- /src/lua/script_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/lua/script_lua.c -------------------------------------------------------------------------------- /src/microui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/microui/Makefile -------------------------------------------------------------------------------- /src/microui/fontstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/microui/fontstd.h -------------------------------------------------------------------------------- /src/microui/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/microui/main.c -------------------------------------------------------------------------------- /src/microui/microui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/microui/microui.c -------------------------------------------------------------------------------- /src/microui/microui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/microui/microui.h -------------------------------------------------------------------------------- /src/microui/resource.h: -------------------------------------------------------------------------------- 1 | #define MainForm 1000 2 | -------------------------------------------------------------------------------- /src/mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/mk.sh -------------------------------------------------------------------------------- /src/pilrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/Makefile -------------------------------------------------------------------------------- /src/pilrc/PilRC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/PilRC.html -------------------------------------------------------------------------------- /src/pilrc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/README.txt -------------------------------------------------------------------------------- /src/pilrc/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/bitmap.c -------------------------------------------------------------------------------- /src/pilrc/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/bitmap.h -------------------------------------------------------------------------------- /src/pilrc/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/font.c -------------------------------------------------------------------------------- /src/pilrc/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/font.h -------------------------------------------------------------------------------- /src/pilrc/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/lex.c -------------------------------------------------------------------------------- /src/pilrc/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/lex.h -------------------------------------------------------------------------------- /src/pilrc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/main.c -------------------------------------------------------------------------------- /src/pilrc/pilrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/pilrc.c -------------------------------------------------------------------------------- /src/pilrc/pilrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/pilrc.h -------------------------------------------------------------------------------- /src/pilrc/plex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/plex.c -------------------------------------------------------------------------------- /src/pilrc/plex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/plex.h -------------------------------------------------------------------------------- /src/pilrc/restype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/restype.c -------------------------------------------------------------------------------- /src/pilrc/restype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/restype.h -------------------------------------------------------------------------------- /src/pilrc/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/stb_image.h -------------------------------------------------------------------------------- /src/pilrc/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/std.h -------------------------------------------------------------------------------- /src/pilrc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/util.c -------------------------------------------------------------------------------- /src/pilrc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/util.h -------------------------------------------------------------------------------- /src/pilrc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/version.h -------------------------------------------------------------------------------- /src/pilrc/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/pilrc/win.c -------------------------------------------------------------------------------- /src/prcbuild/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/prcbuild/Makefile -------------------------------------------------------------------------------- /src/prcbuild/pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/prcbuild/pdb.c -------------------------------------------------------------------------------- /src/prcbuild/pdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/prcbuild/pdb.h -------------------------------------------------------------------------------- /src/taskbar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/taskbar/Makefile -------------------------------------------------------------------------------- /src/taskbar/resource.h: -------------------------------------------------------------------------------- 1 | #define MainForm 1000 2 | -------------------------------------------------------------------------------- /src/taskbar/taskbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/taskbar/taskbar.c -------------------------------------------------------------------------------- /src/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/test/Makefile -------------------------------------------------------------------------------- /src/test/resource.rcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/test/resource.rcp -------------------------------------------------------------------------------- /src/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/test/test.c -------------------------------------------------------------------------------- /src/tos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/tos/Makefile -------------------------------------------------------------------------------- /src/tos/resource.rcp: -------------------------------------------------------------------------------- 1 | HEX "CmdN" ID 1000 "tos" 0x00 2 | -------------------------------------------------------------------------------- /src/tos/tos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/tos/tos.c -------------------------------------------------------------------------------- /src/unscii/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/unscii/Makefile -------------------------------------------------------------------------------- /src/unscii/unscii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/unscii/unscii.c -------------------------------------------------------------------------------- /src/unscii/x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/unscii/x16 -------------------------------------------------------------------------------- /src/unscii/x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/unscii/x8 -------------------------------------------------------------------------------- /src/utf8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/utf8/Makefile -------------------------------------------------------------------------------- /src/utf8/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/utf8/utf8.c -------------------------------------------------------------------------------- /src/vi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/vi/Makefile -------------------------------------------------------------------------------- /src/vi/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/vi/vi.c -------------------------------------------------------------------------------- /src/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/windows/Makefile -------------------------------------------------------------------------------- /src/windows/drop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/windows/drop.cpp -------------------------------------------------------------------------------- /src/windows/drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/windows/drop.h -------------------------------------------------------------------------------- /src/windows/icon.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "pumpkin.ico" 2 | -------------------------------------------------------------------------------- /src/windows/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/windows/main.c -------------------------------------------------------------------------------- /src/windows/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/windows/midi.c -------------------------------------------------------------------------------- /src/windows/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/windows/midi.h -------------------------------------------------------------------------------- /src/zigtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/zigtest/Makefile -------------------------------------------------------------------------------- /src/zigtest/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/zigtest/build.zig -------------------------------------------------------------------------------- /src/zigtest/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/src/zigtest/main.zig -------------------------------------------------------------------------------- /util/pack_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/util/pack_linux.sh -------------------------------------------------------------------------------- /util/pack_windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/migueletto/PumpkinOS/HEAD/util/pack_windows.sh --------------------------------------------------------------------------------