├── BOF_spawn.cna ├── Bin ├── .gitkeep └── temp │ └── .gitkeep ├── Dockerfile ├── Makefile ├── README.md └── Src ├── Beacon.h ├── Bof.c ├── Bofdefs.h ├── Draugr.c ├── Draugr.h ├── Macros.h ├── Native.h ├── Stub.s ├── Vulcan.h └── VxTable.h /BOF_spawn.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/BOF_spawn.cna -------------------------------------------------------------------------------- /Bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bin/temp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/README.md -------------------------------------------------------------------------------- /Src/Beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Beacon.h -------------------------------------------------------------------------------- /Src/Bof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Bof.c -------------------------------------------------------------------------------- /Src/Bofdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Bofdefs.h -------------------------------------------------------------------------------- /Src/Draugr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Draugr.c -------------------------------------------------------------------------------- /Src/Draugr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Draugr.h -------------------------------------------------------------------------------- /Src/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Macros.h -------------------------------------------------------------------------------- /Src/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Native.h -------------------------------------------------------------------------------- /Src/Stub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Stub.s -------------------------------------------------------------------------------- /Src/Vulcan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/Vulcan.h -------------------------------------------------------------------------------- /Src/VxTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NtDallas/BOF_Spawn/HEAD/Src/VxTable.h --------------------------------------------------------------------------------