0 Members and 1 Guest are viewing this topic.
def get8xdata(filename): """Opens a TI-8x data variable and returns a tuple of its internal name and of its data""" try: file = open(filename, 'rb') except: print "Can't open file: ", filename raise IOError output = file.read() file.close() end = len(output) - 2 data = output[72:end] name = output[60:68] return data, name
Or VB, I guess.
YAY Thanks much, I hope I get a +10 in the next release to compensate for this
It is functional, but can you add an option to open a *.8xp file? Other than that, the only other thing I would like to see is that you can see the disassembly without clicking on the disassembly's text box. Edit: Also, entering stuff like "C39D95" (jp $9D95) causes the disassembly to be "jp 38301". Could you add an option to make this hexadecimal instead of decimal?