├── LICENSE ├── README.md ├── codeflash_ROMs ├── .gitignore ├── DET1-1.73CID │ ├── README.md │ └── mailstation-DET1-codeflash-1.73CID.bin ├── DET1-2.53YR │ ├── README.md │ ├── mailstation-DET1-codeflash-2.53YR.bin │ ├── ms253yr_00.txt │ └── ms253yr_80.txt ├── DET1-2.54 │ ├── 002.asm │ ├── README.md │ ├── Strings.txt │ ├── jumps.asm.txt │ └── mailstation-DET1-codeflash-2.54.bin ├── DET1-2.54Y │ ├── README.md │ └── mailstation-DET1-codeflash-2.54Y.bin ├── DET1-2.55Y │ ├── README.md │ ├── mailstation-DET1-codeflash-2.55Y.bin │ └── mailstation-DET1-dataflash.bin ├── DET1-3.03 │ ├── README.md │ └── mailstation-DET1-codeflash-3.03.bin ├── DET1-3.03a │ ├── README.md │ └── mailstation-DET1-codeflash-3.03a.bin ├── DET1D-4.04D │ ├── README.md │ └── mailstation-DET1D-codeflash-4.04D.bin ├── README.md └── gen_disasm.sh ├── fonts └── msfont-3x5-mono.ttf ├── scripts ├── icon_bmp_to_struct_init.sh └── ttf_to_header.sh ├── src ├── README.md ├── demos │ ├── FyOS │ │ ├── makefile │ │ ├── v0.01 │ │ │ ├── .gitignore │ │ │ ├── cgafont.inc │ │ │ ├── crt0.s │ │ │ ├── fyos.c │ │ │ ├── fyos.h │ │ │ ├── getchar.s │ │ │ ├── mailstation.c │ │ │ ├── mailstation.h │ │ │ ├── makefile │ │ │ ├── putchar.s │ │ │ └── scancode_table.inc │ │ └── v0.02 │ │ │ ├── .gitignore │ │ │ ├── cgafont.inc │ │ │ ├── crt0.s │ │ │ ├── fyos.c │ │ │ ├── fyos.h │ │ │ ├── getchar.s │ │ │ ├── mailstation.c │ │ │ ├── mailstation.h │ │ │ ├── makefile │ │ │ ├── putchar.s │ │ │ └── scancode_table.inc │ ├── README.md │ ├── blinkled │ │ ├── .gitignore │ │ ├── blinkled.s │ │ └── makefile │ ├── channels │ │ ├── .gitignore │ │ ├── MIlotto.s │ │ ├── README.md │ │ ├── makefile │ │ ├── topstories.s │ │ ├── tvlisting.s │ │ └── weather.s │ ├── drawimage │ │ ├── .gitignore │ │ ├── README.md │ │ ├── cityscape.inc │ │ ├── crt0-asm.s │ │ ├── drawimage.s │ │ ├── fybertechlogo.inc │ │ ├── fybertechlogo.rle │ │ ├── fybertechlogo_rle.inc │ │ ├── graphicslcd.s │ │ └── makefile │ └── makefile ├── host │ ├── README.md │ └── mailtransfer │ │ ├── README.md │ │ ├── inpout32.dll │ │ ├── mailtransfer.c │ │ ├── mailtransfer.exe │ │ └── makefile ├── include │ ├── CFfuncs.h │ ├── dflash_app.h │ ├── dflash_write.h │ ├── graphics-textmode.h │ ├── keyboard.h │ ├── lcd.h │ ├── led.h │ ├── ms_ports.h │ ├── msfont_3x5.h │ ├── msfw_parport.h │ └── wifi_parport.h ├── makefile ├── mslib │ ├── .gitignore │ ├── crt0-slot4.s │ ├── dflash_write.c │ ├── graphics-textmode.c │ ├── keyboard.c │ ├── lcd.c │ ├── makefile │ ├── msfw_parport.c │ └── wifi_parport.c └── tools │ ├── README.md │ ├── makefile │ ├── msemu_4to8_loader │ ├── .gitignore │ ├── README.md │ ├── makefile │ └── msemu_4to8_loader.s │ └── msloader │ ├── .gitignore │ ├── LDR.s │ ├── README.md │ ├── crt0-msloader-LDR.s │ ├── dump.c │ ├── dump.h │ ├── interface.c │ ├── interface.h │ ├── loadrun.c │ ├── loadrun.h │ ├── makefile │ ├── msloader-app_info.h │ ├── msloader-icon.bmp │ ├── msloader.c │ ├── msloader.h │ ├── parport_method.c │ ├── parport_method.h │ ├── save.c │ ├── save.h │ └── trampoline.c └── templates └── dflash_app_icon_40x34.bmp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/.gitignore: -------------------------------------------------------------------------------- 1 | disasm/ 2 | -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-1.73CID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-1.73CID/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-1.73CID/mailstation-DET1-codeflash-1.73CID.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-1.73CID/mailstation-DET1-codeflash-1.73CID.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.53YR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.53YR/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.53YR/mailstation-DET1-codeflash-2.53YR.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.53YR/mailstation-DET1-codeflash-2.53YR.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.53YR/ms253yr_00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.53YR/ms253yr_00.txt -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.53YR/ms253yr_80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.53YR/ms253yr_80.txt -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.54/002.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.54/002.asm -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.54/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.54/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.54/Strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.54/Strings.txt -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.54/jumps.asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.54/jumps.asm.txt -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.54/mailstation-DET1-codeflash-2.54.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.54/mailstation-DET1-codeflash-2.54.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.54Y/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.54Y/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.54Y/mailstation-DET1-codeflash-2.54Y.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.54Y/mailstation-DET1-codeflash-2.54Y.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.55Y/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.55Y/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.55Y/mailstation-DET1-codeflash-2.55Y.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.55Y/mailstation-DET1-codeflash-2.55Y.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-2.55Y/mailstation-DET1-dataflash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-2.55Y/mailstation-DET1-dataflash.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-3.03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-3.03/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-3.03/mailstation-DET1-codeflash-3.03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-3.03/mailstation-DET1-codeflash-3.03.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-3.03a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-3.03a/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/DET1-3.03a/mailstation-DET1-codeflash-3.03a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1-3.03a/mailstation-DET1-codeflash-3.03a.bin -------------------------------------------------------------------------------- /codeflash_ROMs/DET1D-4.04D/README.md: -------------------------------------------------------------------------------- 1 | # Firmware Rev 4.04D 2 | 3 | Dumped from Mivo 150 unit. 4 | -------------------------------------------------------------------------------- /codeflash_ROMs/DET1D-4.04D/mailstation-DET1D-codeflash-4.04D.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/DET1D-4.04D/mailstation-DET1D-codeflash-4.04D.bin -------------------------------------------------------------------------------- /codeflash_ROMs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/README.md -------------------------------------------------------------------------------- /codeflash_ROMs/gen_disasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/codeflash_ROMs/gen_disasm.sh -------------------------------------------------------------------------------- /fonts/msfont-3x5-mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/fonts/msfont-3x5-mono.ttf -------------------------------------------------------------------------------- /scripts/icon_bmp_to_struct_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/scripts/icon_bmp_to_struct_init.sh -------------------------------------------------------------------------------- /scripts/ttf_to_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/scripts/ttf_to_header.sh -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/README.md -------------------------------------------------------------------------------- /src/demos/FyOS/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/makefile -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/.gitignore -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/cgafont.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/cgafont.inc -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/crt0.s -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/fyos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/fyos.c -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/fyos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/fyos.h -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/getchar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/getchar.s -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/mailstation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/mailstation.c -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/mailstation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/mailstation.h -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/makefile -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/putchar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/putchar.s -------------------------------------------------------------------------------- /src/demos/FyOS/v0.01/scancode_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.01/scancode_table.inc -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/.gitignore -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/cgafont.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/cgafont.inc -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/crt0.s -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/fyos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/fyos.c -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/fyos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/fyos.h -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/getchar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/getchar.s -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/mailstation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/mailstation.c -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/mailstation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/mailstation.h -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/makefile -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/putchar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/putchar.s -------------------------------------------------------------------------------- /src/demos/FyOS/v0.02/scancode_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/FyOS/v0.02/scancode_table.inc -------------------------------------------------------------------------------- /src/demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/README.md -------------------------------------------------------------------------------- /src/demos/blinkled/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/blinkled/.gitignore -------------------------------------------------------------------------------- /src/demos/blinkled/blinkled.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/blinkled/blinkled.s -------------------------------------------------------------------------------- /src/demos/blinkled/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/blinkled/makefile -------------------------------------------------------------------------------- /src/demos/channels/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/channels/.gitignore -------------------------------------------------------------------------------- /src/demos/channels/MIlotto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/channels/MIlotto.s -------------------------------------------------------------------------------- /src/demos/channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/channels/README.md -------------------------------------------------------------------------------- /src/demos/channels/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/channels/makefile -------------------------------------------------------------------------------- /src/demos/channels/topstories.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/channels/topstories.s -------------------------------------------------------------------------------- /src/demos/channels/tvlisting.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/channels/tvlisting.s -------------------------------------------------------------------------------- /src/demos/channels/weather.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/channels/weather.s -------------------------------------------------------------------------------- /src/demos/drawimage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/.gitignore -------------------------------------------------------------------------------- /src/demos/drawimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/README.md -------------------------------------------------------------------------------- /src/demos/drawimage/cityscape.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/cityscape.inc -------------------------------------------------------------------------------- /src/demos/drawimage/crt0-asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/crt0-asm.s -------------------------------------------------------------------------------- /src/demos/drawimage/drawimage.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/drawimage.s -------------------------------------------------------------------------------- /src/demos/drawimage/fybertechlogo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/fybertechlogo.inc -------------------------------------------------------------------------------- /src/demos/drawimage/fybertechlogo.rle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/fybertechlogo.rle -------------------------------------------------------------------------------- /src/demos/drawimage/fybertechlogo_rle.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/fybertechlogo_rle.inc -------------------------------------------------------------------------------- /src/demos/drawimage/graphicslcd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/graphicslcd.s -------------------------------------------------------------------------------- /src/demos/drawimage/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/drawimage/makefile -------------------------------------------------------------------------------- /src/demos/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/demos/makefile -------------------------------------------------------------------------------- /src/host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/host/README.md -------------------------------------------------------------------------------- /src/host/mailtransfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/host/mailtransfer/README.md -------------------------------------------------------------------------------- /src/host/mailtransfer/inpout32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/host/mailtransfer/inpout32.dll -------------------------------------------------------------------------------- /src/host/mailtransfer/mailtransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/host/mailtransfer/mailtransfer.c -------------------------------------------------------------------------------- /src/host/mailtransfer/mailtransfer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/host/mailtransfer/mailtransfer.exe -------------------------------------------------------------------------------- /src/host/mailtransfer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/host/mailtransfer/makefile -------------------------------------------------------------------------------- /src/include/CFfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/CFfuncs.h -------------------------------------------------------------------------------- /src/include/dflash_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/dflash_app.h -------------------------------------------------------------------------------- /src/include/dflash_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/dflash_write.h -------------------------------------------------------------------------------- /src/include/graphics-textmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/graphics-textmode.h -------------------------------------------------------------------------------- /src/include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/keyboard.h -------------------------------------------------------------------------------- /src/include/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/lcd.h -------------------------------------------------------------------------------- /src/include/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/led.h -------------------------------------------------------------------------------- /src/include/ms_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/ms_ports.h -------------------------------------------------------------------------------- /src/include/msfont_3x5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/msfont_3x5.h -------------------------------------------------------------------------------- /src/include/msfw_parport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/msfw_parport.h -------------------------------------------------------------------------------- /src/include/wifi_parport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/include/wifi_parport.h -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/makefile -------------------------------------------------------------------------------- /src/mslib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/.gitignore -------------------------------------------------------------------------------- /src/mslib/crt0-slot4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/crt0-slot4.s -------------------------------------------------------------------------------- /src/mslib/dflash_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/dflash_write.c -------------------------------------------------------------------------------- /src/mslib/graphics-textmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/graphics-textmode.c -------------------------------------------------------------------------------- /src/mslib/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/keyboard.c -------------------------------------------------------------------------------- /src/mslib/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/lcd.c -------------------------------------------------------------------------------- /src/mslib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/makefile -------------------------------------------------------------------------------- /src/mslib/msfw_parport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/msfw_parport.c -------------------------------------------------------------------------------- /src/mslib/wifi_parport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/mslib/wifi_parport.c -------------------------------------------------------------------------------- /src/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/README.md -------------------------------------------------------------------------------- /src/tools/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/makefile -------------------------------------------------------------------------------- /src/tools/msemu_4to8_loader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msemu_4to8_loader/.gitignore -------------------------------------------------------------------------------- /src/tools/msemu_4to8_loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msemu_4to8_loader/README.md -------------------------------------------------------------------------------- /src/tools/msemu_4to8_loader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msemu_4to8_loader/makefile -------------------------------------------------------------------------------- /src/tools/msemu_4to8_loader/msemu_4to8_loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msemu_4to8_loader/msemu_4to8_loader.s -------------------------------------------------------------------------------- /src/tools/msloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/.gitignore -------------------------------------------------------------------------------- /src/tools/msloader/LDR.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/LDR.s -------------------------------------------------------------------------------- /src/tools/msloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/README.md -------------------------------------------------------------------------------- /src/tools/msloader/crt0-msloader-LDR.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/crt0-msloader-LDR.s -------------------------------------------------------------------------------- /src/tools/msloader/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/dump.c -------------------------------------------------------------------------------- /src/tools/msloader/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/dump.h -------------------------------------------------------------------------------- /src/tools/msloader/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/interface.c -------------------------------------------------------------------------------- /src/tools/msloader/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/interface.h -------------------------------------------------------------------------------- /src/tools/msloader/loadrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/loadrun.c -------------------------------------------------------------------------------- /src/tools/msloader/loadrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/loadrun.h -------------------------------------------------------------------------------- /src/tools/msloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/makefile -------------------------------------------------------------------------------- /src/tools/msloader/msloader-app_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/msloader-app_info.h -------------------------------------------------------------------------------- /src/tools/msloader/msloader-icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/msloader-icon.bmp -------------------------------------------------------------------------------- /src/tools/msloader/msloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/msloader.c -------------------------------------------------------------------------------- /src/tools/msloader/msloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/msloader.h -------------------------------------------------------------------------------- /src/tools/msloader/parport_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/parport_method.c -------------------------------------------------------------------------------- /src/tools/msloader/parport_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/parport_method.h -------------------------------------------------------------------------------- /src/tools/msloader/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/save.c -------------------------------------------------------------------------------- /src/tools/msloader/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/save.h -------------------------------------------------------------------------------- /src/tools/msloader/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/src/tools/msloader/trampoline.c -------------------------------------------------------------------------------- /templates/dflash_app_icon_40x34.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbembedded/mailstation/HEAD/templates/dflash_app_icon_40x34.bmp --------------------------------------------------------------------------------