|
Last change
on this file since f40a309 was f40a309, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Unix line breaks.
|
-
Property mode
set to
100644
|
|
File size:
621 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | ============================================================================
|
|---|
| 3 | regs.h -- register structure for Buchla 700 ROMP debug facility
|
|---|
| 4 | Version 6 -- 1987-06-15 -- D.N. Lynx Crowe
|
|---|
| 5 | (c) Copyright 1987 -- D.N. Lynx Crowe
|
|---|
| 6 |
|
|---|
| 7 | Defines the registers saved on the stack when a breakpoint occurs.
|
|---|
| 8 | ============================================================================
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | struct regs {
|
|---|
| 12 |
|
|---|
| 13 | long d_reg[8]; /* Data registers d0..d7 */
|
|---|
| 14 |
|
|---|
| 15 | char *a_reg[8]; /* Address registers */
|
|---|
| 16 |
|
|---|
| 17 | unsigned short reg_fill, /* Filler to keep long alignment */
|
|---|
| 18 | reg_sr, /* Status register */
|
|---|
| 19 | *reg_pc; /* Program counter */
|
|---|
| 20 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.