source: buchla-68k/include/regs.h@ f7428b1

Last change on this file since f7428b1 was f7428b1, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Started to rework include files.

  • Property mode set to 100644
File size: 654 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#pragma once
12#include "stdint.h"
13
14struct regs {
15
16 int32_t d_reg[8]; /* Data registers d0..d7 */
17
18 int8_t *a_reg[8]; /* Address registers */
19
20 uint16_t reg_fill, /* Filler to keep long alignment */
21 reg_sr, /* Status register */
22 *reg_pc; /* Program counter */
23};
Note: See TracBrowser for help on using the repository browser.