## Copyright (C) 2016 Jeremiah Orians
## This file is part of stage0.
##
## stage0 is free software: you an redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## stage0 is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with stage0. If not, see .
import subprocess
import ctypes
import re
import sys, getopt
vm = ctypes.CDLL('./libvm.so')
vm.initialize_lilith.argtype = ctypes.c_uint
vm.get_memory.argtype = ctypes.c_uint
vm.get_memory.restype = ctypes.c_char_p
vm.step_lilith.restype = ctypes.c_uint
vm.set_register.argtype = (ctypes.c_uint, ctypes.c_uint)
vm.set_memory.argtype = (ctypes.c_uint, ctypes.c_ubyte)
vm.get_register.argtype = ctypes.c_uint
vm.get_register.restype = ctypes.c_uint
def Reset_lilith():
global Memory_Size
if 0 <= Memory_Size < 1024:
unit = 'Bytes'
chunks = Memory_Size
elif 1024 <= Memory_Size < (1024 * 1024):
unit = 'KB'
chunks = Memory_Size / 1024
elif (1024 * 1024) <= Memory_Size < (1024 * 1024 * 1024):
unit = 'MB'
chunks = Memory_Size / (1024 * 1024)
else:
unit = 'GB'
chunks = Memory_Size / (1024 * 1024 * 1024)
print("Current Memory Size is: " + str(chunks) + unit)
vm.initialize_lilith(Memory_Size)
global Current_IP
Current_IP = 0
global Watchpoints
Watchpoints = {0}
global ROM_Name
vm.load_lilith(ctypes.create_string_buffer(ROM_Name.encode('ascii')))
def Step_lilith():
global Current_IP
Current_IP = vm.step_lilith()
global Count
Count = Count + 1
return
def Set_Memory(address, value):
vm.set_memory(address, value)
return
def Set_Register(register, value):
vm.set_register(register, value)
return
def returnPage():
return get_header() + (vm.get_memory(Current_Page)).decode('utf-8') + get_spacer1() + get_registers(0) + get_registers(9) + get_spacer2() + get_Window_shortcut() + get_disassembled() + get_footer()
hexlookup = { 0 : '0', 1 : '1', 2 : '2', 3 : '3', 4 : '4', 5 : '5', 6 : '6', 7 : '7', 8 : '8', 9 : '9', 10 : 'A', 11 : 'B', 12 : 'C', 13 : 'D', 14 : 'E', 15 : 'F' }
def formatByte(a):
first = a >> 4
second = a % 16
return str(hexlookup[first]+hexlookup[second])
def formatAddress(a):
first = a >> 24
second = (a % 16777216) >> 16
third = (a % 65536) >> 8
fourth = a % 256
myreturn = formatByte(first) + formatByte(second) + formatByte(third) + formatByte(fourth)
return myreturn[:-1] + "x"
def formatRegister(a):
first = a >> 24
second = (a % 16777216) >> 16
third = (a % 65536) >> 8
fourth = a % 256
return formatByte(first) + formatByte(second) + formatByte(third) + formatByte(fourth)
def get_header():
return """
Knight CPU Debugger
Index
0
1
2
3
4
5
6
7
8
8
A
B
C
D
E
F
"""
def get_spacer1():
return """
"""
def get_registers(index):
temp = """
Register
Value
Name
"""
if (0 == index):
for i in range(0,9):
temp = temp + """
"""
for line in f:
pieces = re.split(r'\t+', line)
i = int(pieces[0], 16)
if (i < Current_IP):
temp = temp + ""
elif (i == Current_IP):
temp = temp + """