|
Last change
on this file since 0170798 was 5fa506d, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Include file cleanup.
|
-
Property mode
set to
100644
|
|
File size:
655 bytes
|
| Rev | Line | |
|---|
| [f40a309] | 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 |
|
|---|
| [f7428b1] | 11 | #pragma once
|
|---|
| [5fa506d] | 12 |
|
|---|
| [f7428b1] | 13 | #include "stdint.h"
|
|---|
| 14 |
|
|---|
| [f40a309] | 15 | struct regs {
|
|---|
| 16 |
|
|---|
| [7258c6a] | 17 | int32_t d_reg[8]; /* Data registers d0..d7 */
|
|---|
| [f40a309] | 18 |
|
|---|
| [7258c6a] | 19 | int8_t *a_reg[8]; /* Address registers */
|
|---|
| [f40a309] | 20 |
|
|---|
| [7258c6a] | 21 | uint16_t reg_fill, /* Filler to keep long alignment */
|
|---|
| [f40a309] | 22 | reg_sr, /* Status register */
|
|---|
| 23 | *reg_pc; /* Program counter */
|
|---|
| 24 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.