h8make: Fix function definition of description(). (nw)

This commit is contained in:
Mike Naberezny 2015-01-27 01:11:10 -08:00
parent a7b55252fd
commit 9981c56a9f

View File

@ -139,7 +139,7 @@ class Opcode:
for i in range(0, extra_words):
self.source.append("\tfetch(%d);\n" % (i+base_offset));
def description():
def description(self):
return "%s %s %s" % (self.name, self.am1, self.am2)
def add_source_line(self, line):