Chasm: The Rift PC game resource collection.
- Chasm-Reverse Panzerchasm
- OpenChasm
- Chasm: The Rift Portable Staging
- Zrift Chasm in Doom - Legacy Edition
- Chasm: The Rift Archive
- The Shadow Zone Invite
- The Shadow Zone
- moddb
- Chasm: The Rift Pack
- Chasm: The Rift - 3OVIEW.EXE DOS model viewer
- Autodesk Animator
- Noesis .3O/.CAR 3D model viewer/converter
- Peganza Pascal Analyzer
- A Deep Dive into the Turbo Pascal Compiled Code
- Awesome Pascal
- TDInfo Parser for IDA
- Duncan Murdoch's Programs
- Rebuild of Turbo Pascal exe missing TPU modules
- Reverse Engineering Delphi Binaries in Ghidra with Dhrake
- Hachoir is a Python library to view and edit a binary stream field by field
- Kaitai Struct: declarative language to generate binary data parsers
/* HROT .PAK FILE FORMAT */
namespace hrot::pak
{
struct header
{
c8<4> magic = "HROT"
u32 names;
u32 count; // 128 is file count
};
struct entry
{
c8<120> name; // terminated with 0x00
u32 pos;
u32 len;
};
};