├── .gitignore ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md └── Sources └── arm64-to-sim ├── Extensions.swift ├── Patcher.swift ├── Transmogrifier.swift └── main.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/README.md -------------------------------------------------------------------------------- /Sources/arm64-to-sim/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/Sources/arm64-to-sim/Extensions.swift -------------------------------------------------------------------------------- /Sources/arm64-to-sim/Patcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/Sources/arm64-to-sim/Patcher.swift -------------------------------------------------------------------------------- /Sources/arm64-to-sim/Transmogrifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/Sources/arm64-to-sim/Transmogrifier.swift -------------------------------------------------------------------------------- /Sources/arm64-to-sim/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luosheng/arm64-to-sim/HEAD/Sources/arm64-to-sim/main.swift --------------------------------------------------------------------------------