- JASM : fixed string literals

git-svn-id: http://moon:8086/svn/vhdl/trunk@1618 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2021-04-01 06:53:44 +00:00
parent 2721d59449
commit 51f295d37f
+1 -1
View File
@@ -261,7 +261,7 @@ file.each do |raw_line|
if 0 == (item =~ /.*\".*\"/)
str = item.delete("\"")
for nn in (0..str.length-1)
value = str[nn].to_i(16)
value = str[nn].ord
obj.put_xmem(value, lc);
len += 1
end;