mirror of
https://github.com/open-goal/jak-project
synced 2026-07-08 14:36:52 -04:00
64bcd8c030
This PR does the following: - Designs a mechanism by which arm64 instructions can be encoded and emitted - Dispatch our higher-level instruction emitting calls to either x86 or arm64 instructions depending on what the compiler is set to (defaults to x86) - Bare minimum scaffolding to get the arm64 instructions successfully executing atleast on apple silicon - Implement enough instructions to get the codetester test suite passing on arm
35 lines
952 B
JSON
35 lines
952 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run C++ Tests LLDB",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build/goalc-test",
|
|
"args": [
|
|
"--gtest_brief=0",
|
|
"--gtest_filter=*CodeTester*",
|
|
"--gtest_break_on_failure"
|
|
],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "lldb"
|
|
},
|
|
{
|
|
"name": "Append File Docs",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/scripts/ci/lint-characters.py",
|
|
"console": "integratedTerminal",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": [
|
|
"--fix"
|
|
]
|
|
},
|
|
]
|
|
} |