From 067693a1f99aba40796266cdda6fe69ecca23a41 Mon Sep 17 00:00:00 2001 From: Ross Wilson Date: Tue, 1 Mar 2016 11:14:32 +0700 Subject: [PATCH] Turned off skip of interblock zeros --- idasm/loadptp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/idasm/loadptp.py b/idasm/loadptp.py index bb935c1..ee455b8 100755 --- a/idasm/loadptp.py +++ b/idasm/loadptp.py @@ -179,9 +179,9 @@ def c8lds_handler(ptp_data, memory): # now read data blocks while True: # skip any leading zeros - index = skipzeros(ptp_data, index) - if index is None: - return (None, None) # end of tape +# index = skipzeros(ptp_data, index) +# if index is None: +# return (None, None) # end of tape # get data word count result = get_byte(ptp_data, index)