ref: 6ec59c81936deeb3b2595e3d9b243a3b5301ba59
parent: f51cde725088984ac6f437112437274082f7cfeb
author: Bryan Bishop <kanzure@gmail.com>
date: Wed May 2 09:43:17 EDT 2012
get_dependencies does not return a list of labels nor strings
--- a/extras/README.md
+++ b/extras/README.md
@@ -53,8 +53,8 @@
# what labels does it refer to?
# these must be present in the final asm file for rgbasm to compile the file
-label_names = script.get_dependencies()
-print str(label_names)
+objdeps = script.get_dependencies()
+print str(objdeps)
# the individual commands that make up the script
commands = script.commands
--
⑨