Removed extra L from autogenerated start.axf.S break_virtual symbol value

This commit is contained in:
Bahadir Balban
2009-08-17 12:19:18 +03:00
parent 89c50d17f2
commit 931c9b2587

View File

@@ -45,7 +45,7 @@ def ksymToLds(target, source, env):
.global %s
.type %s, function
.equ %s, %s
''' % (symbol, symbol, symbol, (hex(int(address, 16) - 0xf0000000))))
''' % (symbol, symbol, symbol, (hex(int(address, 16) - 0xf0000000))[:-1]))
def createKernelSFile(target, source, env):
with open(target[0].path, 'w') as asmFile: