Fix to properly format the CPU boot code load string on ARM platforms (Jordi Guillaumes i Pons)
This commit is contained in:
parent
8a6d90cf57
commit
97d4f18377
1 changed files with 1 additions and 1 deletions
|
@ -3471,7 +3471,7 @@ if (sim_log)
|
||||||
if (rom)
|
if (rom)
|
||||||
sprintf (args, "-R %s", filename);
|
sprintf (args, "-R %s", filename);
|
||||||
else
|
else
|
||||||
sprintf (args, "-O %s %X", filename, offset);
|
sprintf (args, "-O %s %X", filename, (int)offset);
|
||||||
r = load_cmd (0, args);
|
r = load_cmd (0, args);
|
||||||
if (r != SCPE_OK) {
|
if (r != SCPE_OK) {
|
||||||
if (builtin_code) {
|
if (builtin_code) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue