2017-04-10 20:53:23 +08:00
|
|
|
#!/usr/bin/env python3
|
2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2017-04-10 20:53:23 +08:00
|
|
|
|
2016-03-11 08:02:24 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# For some baffling reason IAMCU sets the instruction set architecture
|
|
|
|
# in the ELF header to 0x06 instead of 0x03 even though it is just
|
|
|
|
# 386 code. This gives QEMU fits. Hack it!
|
|
|
|
fd = open(sys.argv[1], "r+b")
|
|
|
|
fd.seek(0x12)
|
|
|
|
# Write 0x03 which is EM_386 to e_machine
|
|
|
|
fd.write(b'\x03')
|
|
|
|
fd.close()
|