Lines Matching refs:abug_cmds

109 static struct monitor_ops abug_cmds;
114 abug_cmds.flags = MO_CLR_BREAK_USES_ADDR;
115 abug_cmds.init = abug_inits; /* Init strings */
116 abug_cmds.cont = "g\r"; /* continue command */
117 abug_cmds.step = "t\r"; /* single step */
118 abug_cmds.stop = NULL; /* interrupt command */
119 abug_cmds.set_break = "br %x\r"; /* set a breakpoint */
120 abug_cmds.clr_break = "nobr %x\r"; /* clear a breakpoint */
121 abug_cmds.clr_all_break = "nobr\r"; /* clear all breakpoints */
122 abug_cmds.fill = "bf %x:%x %x;b\r"; /* fill (start count val) */
123 abug_cmds.setmem.cmdb = "ms %x %02x\r"; /* setmem.cmdb (addr, value) */
124 abug_cmds.setmem.cmdw = "ms %x %04x\r"; /* setmem.cmdw (addr, value) */
125 abug_cmds.setmem.cmdl = "ms %x %08x\r"; /* setmem.cmdl (addr, value) */
126 abug_cmds.setmem.cmdll = NULL; /* setmem.cmdll (addr, value) */
127 abug_cmds.setmem.resp_delim = NULL; /* setreg.resp_delim */
128 abug_cmds.setmem.term = NULL; /* setreg.term */
129 abug_cmds.setmem.term_cmd = NULL; /* setreg.term_cmd */
130 abug_cmds.getmem.cmdb = "md %x:%x;b\r"; /* getmem.cmdb (addr, len) */
131 abug_cmds.getmem.cmdw = "md %x:%x;b\r"; /* getmem.cmdw (addr, len) */
132 abug_cmds.getmem.cmdl = "md %x:%x;b\r"; /* getmem.cmdl (addr, len) */
133 abug_cmds.getmem.cmdll = NULL; /* getmem.cmdll (addr, len) */
134 abug_cmds.getmem.resp_delim = " "; /* getmem.resp_delim */
135 abug_cmds.getmem.term = NULL; /* getmem.term */
136 abug_cmds.getmem.term_cmd = NULL; /* getmem.term_cmd */
137 abug_cmds.setreg.cmd = "rm %s %x\r"; /* setreg.cmd (name, value) */
138 abug_cmds.setreg.resp_delim = "="; /* setreg.resp_delim */
139 abug_cmds.setreg.term = "? "; /* setreg.term */
140 abug_cmds.setreg.term_cmd = ".\r"; /* setreg.term_cmd */
141 abug_cmds.getreg.cmd = "rm %s\r"; /* getreg.cmd (name) */
142 abug_cmds.getreg.resp_delim = "="; /* getreg.resp_delim */
143 abug_cmds.getreg.term = "? "; /* getreg.term */
144 abug_cmds.getreg.term_cmd = ".\r"; /* getreg.term_cmd */
145 abug_cmds.dump_registers = "rd\r"; /* dump_registers */
146 abug_cmds.register_pattern = "\\(\\w+\\) +=\\([0-9a-fA-F]+\\b\\)"; /* register_pattern */
147 abug_cmds.supply_register = abug_supply_register;
148 abug_cmds.load_routine = NULL; /* load_routine (defaults to SRECs) */
149 abug_cmds.load = "lo 0\r"; /* download command */
150 abug_cmds.loadresp = "\n"; /* load response */
151 abug_cmds.prompt = "135Bug>"; /* monitor command prompt */
152 abug_cmds.line_term = "\r"; /* end-of-line terminator */
153 abug_cmds.cmd_end = NULL; /* optional command terminator */
154 abug_cmds.target = &abug_ops; /* target operations */
155 abug_cmds.stopbits = SERIAL_1_STOPBITS; /* number of stop bits */
156 abug_cmds.regnames = NULL; /* registers names */
157 abug_cmds.regname = abug_regname;
158 abug_cmds.magic = MONITOR_OPS_MAGIC; /* magic */
164 monitor_open (args, &abug_cmds, from_tty);