├── .gitignore ├── Build ├── Debug │ └── .gitignore └── Release │ └── .gitignore ├── Inc ├── biosndos.h ├── dos.inc ├── handlers.h ├── tsrplex.h ├── tsrplex.inc └── tsrresic.h ├── README.md ├── Src ├── biosndos.asm ├── handlers.c ├── mainc.c ├── tsrplex.asm └── tsrresic.asm ├── makefile └── test └── send_message.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.err -------------------------------------------------------------------------------- /Build/Debug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Build/Debug/.gitignore -------------------------------------------------------------------------------- /Build/Release/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Build/Release/.gitignore -------------------------------------------------------------------------------- /Inc/biosndos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Inc/biosndos.h -------------------------------------------------------------------------------- /Inc/dos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Inc/dos.inc -------------------------------------------------------------------------------- /Inc/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Inc/handlers.h -------------------------------------------------------------------------------- /Inc/tsrplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Inc/tsrplex.h -------------------------------------------------------------------------------- /Inc/tsrplex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Inc/tsrplex.inc -------------------------------------------------------------------------------- /Inc/tsrresic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Inc/tsrresic.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/README.md -------------------------------------------------------------------------------- /Src/biosndos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Src/biosndos.asm -------------------------------------------------------------------------------- /Src/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Src/handlers.c -------------------------------------------------------------------------------- /Src/mainc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Src/mainc.c -------------------------------------------------------------------------------- /Src/tsrplex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Src/tsrplex.asm -------------------------------------------------------------------------------- /Src/tsrresic.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/Src/tsrresic.asm -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/makefile -------------------------------------------------------------------------------- /test/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cml37/dos-push-notifications-tsr/HEAD/test/send_message.py --------------------------------------------------------------------------------