mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-24 06:34:02 +00:00
superficial changes to test CI
This commit is contained in:
parent
0d4b96cfa7
commit
a58478a401
11
src/debug.c
11
src/debug.c
@ -380,9 +380,7 @@ void api_push_disassembly() {
|
|||||||
//disassemble chain from now -> to -> future
|
//disassemble chain from now -> to -> future
|
||||||
int disassemble_next = 10; // how many instructions
|
int disassemble_next = 10; // how many instructions
|
||||||
int kpc = engine.kpc; // get starting address
|
int kpc = engine.kpc; // get starting address
|
||||||
printf("KPC: %06X", kpc);
|
|
||||||
for (int i = 0; i<disassemble_next; i++) {
|
for (int i = 0; i<disassemble_next; i++) {
|
||||||
|
|
||||||
byte_size = do_dis_json(tmp_buffer_4k, kpc, size_mem_imm, size_x_imm, 0, 0, i);
|
byte_size = do_dis_json(tmp_buffer_4k, kpc, size_mem_imm, size_x_imm, 0, 0, i);
|
||||||
char *msg = (char*)malloc(sizeof(char) * (strlen(tmp_buffer_4k)+1));
|
char *msg = (char*)malloc(sizeof(char) * (strlen(tmp_buffer_4k)+1));
|
||||||
strcpy(msg,tmp_buffer_4k);
|
strcpy(msg,tmp_buffer_4k);
|
||||||
@ -459,7 +457,7 @@ void event_pause() {
|
|||||||
timeout = 200;
|
timeout = 200;
|
||||||
debug_pause = 1;
|
debug_pause = 1;
|
||||||
while (debug_pause) {
|
while (debug_pause) {
|
||||||
printf("PAUSED\n");
|
glog("PAUSED");
|
||||||
debug_handle_event();
|
debug_handle_event();
|
||||||
debug_server_poll();
|
debug_server_poll();
|
||||||
}
|
}
|
||||||
@ -715,7 +713,6 @@ void event_set_cpu(char *str) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void debug_init() {
|
void debug_init() {
|
||||||
if (g_dbg_enable_port > 0) {
|
if (g_dbg_enable_port > 0) {
|
||||||
// g_dbg_enable_port should be enabled by
|
// g_dbg_enable_port should be enabled by
|
||||||
@ -742,6 +739,7 @@ void debug_setup_socket() {
|
|||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*************************************************************/
|
/*************************************************************/
|
||||||
/* Allow socket descriptor to be reuseable */
|
/* Allow socket descriptor to be reuseable */
|
||||||
/*************************************************************/
|
/*************************************************************/
|
||||||
@ -809,6 +807,7 @@ void debug_setup_socket() {
|
|||||||
timeout = (3 * 60 * 1000);
|
timeout = (3 * 60 * 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// builds our big json array of commands eg "[{},{},{},...]"
|
// builds our big json array of commands eg "[{},{},{},...]"
|
||||||
void api_write_socket() {
|
void api_write_socket() {
|
||||||
const char *comma = ",";
|
const char *comma = ",";
|
||||||
@ -841,6 +840,7 @@ void api_write_socket() {
|
|||||||
free(message_string); // assuming it was all written :P
|
free(message_string); // assuming it was all written :P
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void write_array_start() {
|
void write_array_start() {
|
||||||
const char *brack = "[";
|
const char *brack = "[";
|
||||||
write(debugger_sd, brack, strlen(brack));
|
write(debugger_sd, brack, strlen(brack));
|
||||||
@ -858,6 +858,7 @@ void write_array_next() {
|
|||||||
write(debugger_sd, com, strlen(com));
|
write(debugger_sd, com, strlen(com));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// // write(debugger_sd, buffer, strlen(buffer));
|
// // write(debugger_sd, buffer, strlen(buffer));
|
||||||
//also for base 64 http://stackoverflow.com/questions/342409/how-do-i-base64-encode-decode-in-c
|
//also for base 64 http://stackoverflow.com/questions/342409/how-do-i-base64-encode-decode-in-c
|
||||||
//http://stackoverflow.com/questions/32749925/sending-a-file-over-a-tcp-ip-socket-web-server
|
//http://stackoverflow.com/questions/32749925/sending-a-file-over-a-tcp-ip-socket-web-server
|
||||||
@ -886,6 +887,7 @@ int writeStrToClient(int sckt, const char *str) {
|
|||||||
return writeDataToClient(sckt, str, strlen(str));
|
return writeDataToClient(sckt, str, strlen(str));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// @todo: probably clean up- this was a hack to allow preloading commands
|
// @todo: probably clean up- this was a hack to allow preloading commands
|
||||||
void debug_wait_hello() {
|
void debug_wait_hello() {
|
||||||
int hello_received = FALSE;
|
int hello_received = FALSE;
|
||||||
@ -904,6 +906,7 @@ void debug_wait_hello() {
|
|||||||
timeout = 0; // instantaneous
|
timeout = 0; // instantaneous
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void debug_server_poll() {
|
void debug_server_poll() {
|
||||||
if (end_server == FALSE) {
|
if (end_server == FALSE) {
|
||||||
/***********************************************************/
|
/***********************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user