Fixed DASM symbol file generation.

This commit is contained in:
g012 2017-12-20 19:18:21 +01:00
parent 1245156c19
commit 99deb2b875
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ M.getsym_as = {
dasm = function() -- .sym
local fmt,rep = string.format,string.rep
local s = M.getsym(function(a,l) return fmt("%s%s %04x", l, rep(' ',24-#l), a) end)
table.insert(s, 1, {'--- Symbol List'})
table.insert(s, 1, '--- Symbol List')
s[#s+1] = '--- End of Symbol List.'
return table.concat(s, '\n')
end,