mirror of
https://github.com/holub/mame
synced 2025-07-04 09:28:51 +03:00
h8make: Fix function definition of description(). (nw)
This commit is contained in:
parent
a7b55252fd
commit
9981c56a9f
@ -139,7 +139,7 @@ class Opcode:
|
|||||||
for i in range(0, extra_words):
|
for i in range(0, extra_words):
|
||||||
self.source.append("\tfetch(%d);\n" % (i+base_offset));
|
self.source.append("\tfetch(%d);\n" % (i+base_offset));
|
||||||
|
|
||||||
def description():
|
def description(self):
|
||||||
return "%s %s %s" % (self.name, self.am1, self.am2)
|
return "%s %s %s" % (self.name, self.am1, self.am2)
|
||||||
|
|
||||||
def add_source_line(self, line):
|
def add_source_line(self, line):
|
||||||
|
Loading…
Reference in New Issue
Block a user