start 21 include/disassemble.h void disassemble_memory(WORD *memory, WORD start, WORD end); start 322 include/exec.h void dumpmemory(WORD start, WORD end); start 20 include/load.h WORD loadassemble(const char *file, WORD start); start 135 include/struct.h WORD start; /**<開始アドレス */ start 433 src/assemble.c asptr->ptr = execptr->start = getadr(asptr->prog, cmdl->opd->opdv[0], pass); start 95 src/comet2.c execptr->start = 0; start 96 src/comet2.c execptr->end = loadassemble(argv[optind++], execptr->start); start 100 src/comet2monitor.c execptr->start = 0; start 102 src/comet2monitor.c execptr->end = loadassemble(argv[optind++], execptr->start); start 169 src/disassemble.c void disassemble_memory(WORD *memory, WORD start, WORD end) start 177 src/disassemble.c WORD ptr = start; start 6 src/dump.c void dumpmemory(WORD start, WORD end) start 21 src/dump.c for(int i = start; i < end; i++) { start 23 src/dump.c if(mod == 0 || i == start) { start 26 src/dump.c if(i == start) { start 64 src/dump.c if(sys->cpu->pr == execptr->start && execmode.reverse == true) { /* reverseオプション指定時、スタート時にプログラム全体を逆アセンブル */ start 65 src/dump.c disassemble_memory(sys->memory, execptr->start, (execptr->end)-1); start 695 src/exec.c for (sys->cpu->pr = execptr->start; ; ) { start 20 src/load.c WORD loadassemble(const char *file, WORD start) start 30 src/load.c end = start + fread(sys->memory + start, sizeof(WORD), sys->memsize - start, fp); start 311 src/monitor.c disassemble_memory(sys->memory, execptr->start, (execptr->end)-1);