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

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

Fewer incompatible pointers.

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