summaryrefslogtreecommitdiff
path: root/arm/include/ureg.h
diff options
context:
space:
mode:
authorcinap_lenrek <devnull@localhost>2011-03-30 15:08:40 +0000
committercinap_lenrek <devnull@localhost>2011-03-30 15:08:40 +0000
commit9b675a9941c8cc7957b3996e10fefdf40be0eb7e (patch)
tree2a55aaed627a642b2283434cd0d4bb7264208a00 /arm/include/ureg.h
parent55613b56d78d8e349174cbd576e346284977c362 (diff)
downloadplan9front-9b675a9941c8cc7957b3996e10fefdf40be0eb7e.tar.xz
continue...
Diffstat (limited to 'arm/include/ureg.h')
-rw-r--r--arm/include/ureg.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/arm/include/ureg.h b/arm/include/ureg.h
new file mode 100644
index 000000000..af6653a56
--- /dev/null
+++ b/arm/include/ureg.h
@@ -0,0 +1,26 @@
+typedef struct Ureg {
+ ulong r0;
+ ulong r1;
+ ulong r2;
+ ulong r3;
+ ulong r4;
+ ulong r5;
+ ulong r6;
+ ulong r7;
+ ulong r8;
+ ulong r9;
+ ulong r10;
+ ulong r11;
+ ulong r12; /* sb */
+ union {
+ ulong r13;
+ ulong sp;
+ };
+ union {
+ ulong r14;
+ ulong link;
+ };
+ ulong type; /* of exception */
+ ulong psr;
+ ulong pc; /* interrupted addr */
+} Ureg;