1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-03 12:29:48 +00:00

Try to fix syntax

This commit is contained in:
Matthias Endler 2018-11-03 12:15:06 +01:00
parent c93571aef2
commit 4ed57998f5
2 changed files with 8 additions and 3 deletions

View File

@ -34,5 +34,6 @@ before_script:
script:
# - xargo build --verbose --target $TARGET --no-default-features
- xargo test --target thumbv7m-linux-eabi.json --no-run
- xargo --print target-list
- xargo test --target thumbv7m-linux-eabi --no-run
- qemu-arm target/thumbv7m-linux-eabi/debug/mos6502

View File

@ -18,10 +18,14 @@
"max-atomic-width": 32,
"os": "linux",
"panic-strategy": "abort",
"pre-link-args": ["-nostartfiles"],
"pre-link-args": {
"gcc": [
"-nostartfiles"
]
},
"relocation-model": "static",
"target-c-int-width": "32",
"target-endian": "little",
"target-pointer-width": "32",
"vendor": ""
}
}