This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (C) 2023 Alexander Meißner | |
// | |
// Minimal code necessary to get a 64 bit VM running. Supports x86-64 and arm64 on Linux and macOS. | |
#if !defined(__x86_64__) && !defined(__aarch64__) | |
#error Unsupported OS | |
#endif | |
#if !defined(__linux__) && !defined(__APPLE__) | |
#error Unsupported ISA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Script for quickbms: https://aluigi.altervista.org/quickbms.htm | |
# Extracts *.unity3d files | |
# (c) 2021-07-21 by Lichtso | |
endian big | |
# Header | |
idstring "UnityFS" | |
Padding 5 | |
get FILE_VERSION byte |