1
0
mirror of https://github.com/simh/simh.git synced 2026-03-02 17:55:17 +00:00

Fix to properly format the CPU boot code load string on ARM platforms (Jordi Guillaumes i Pons)

This commit is contained in:
Mark Pizzolato
2012-11-20 04:59:29 -08:00
parent 8a6d90cf57
commit 97d4f18377

View File

@@ -3471,7 +3471,7 @@ if (sim_log)
if (rom)
sprintf (args, "-R %s", filename);
else
sprintf (args, "-O %s %X", filename, offset);
sprintf (args, "-O %s %X", filename, (int)offset);
r = load_cmd (0, args);
if (r != SCPE_OK) {
if (builtin_code) {