diff --git a/CHANGELOG.org b/CHANGELOG.org index a05d83e..ff2e4f8 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -14,7 +14,17 @@ ## You should have received a copy of the GNU General Public License ## along with stage0. If not, see . -* Unreleased +* Current +** Added + +** Changed + +** Fixed +Made Web debugger provide more useful information + +** Removed + +* 0.0.5 - 2017-05-06 ** Added Added write to lisp Added Cell Compactor to Lisp garbage collector resulting with multiple performance improvements diff --git a/User_Interface.py b/User_Interface.py index 5a8db43..1429b0b 100644 --- a/User_Interface.py +++ b/User_Interface.py @@ -214,14 +214,15 @@ def get_footer(): def main(argv): global Debug_Point + help_string = 'Knight.py --ROM=$NAME [--DEBUG=$NUMBER] [--WINDOW=$NUMBER] [--MEMORY=$SIZE]\n' try: opts, args = getopt.getopt(argv,"R:D:W:M:",["ROM=","DEBUG=","WINDOW=", "MEMORY="]) except getopt.GetoptError: - print ('Knight.py ROM=$NAME DEBUG=$NUMBER WINDOW=$NUMBER\n') + print (help_string) sys.exit(2) for opt, arg in opts: if opt == '-h': - print ('Knight.py ROM=$NAME DEBUG=$NUMBER\n') + print (help_string) sys.exit() elif opt in ("-R", "--ROM"): global ROM_Name