diff --git a/py65/monitor.py b/py65/monitor.py index 07bf340..bc0db0c 100644 --- a/py65/monitor.py +++ b/py65/monitor.py @@ -625,6 +625,11 @@ class Monitor(cmd.Cmd): self._fill(start, start, bytes) + def help_save(self): + self._output("save \"filename\" ") + self._output("Save the specified memory range as a binary file.") + self._output("Commodore-style load address bytes are not written.") + def do_save(self, args): split = shlex.split(args) if len(split) != 3: @@ -650,11 +655,6 @@ class Monitor(cmd.Cmd): self._output("Saved +%d bytes to %s" % (len(mem), filename)) - def help_save(self): - self._output("save \"filename\" ") - self._output("Save the specified memory range as a binary file.") - self._output("Commodore-style load address bytes are not written.") - def help_fill(self): self._output("fill ") self._output("Fill memory in the address range with the data in")