diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-04-29 17:38:41 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-04-29 17:38:41 +0300 |
| commit | 9273c16434316a8ab60dc78ee65a03e68031203a (patch) | |
| tree | 41754de4b7c459fc07e20189948c94a0e2cab966 /arch/riscv64/include/regs.h | |
| parent | 105f3d0dab75f669d1fc404c06b73289b343591c (diff) | |
| download | kmi-9273c16434316a8ab60dc78ee65a03e68031203a.tar.gz kmi-9273c16434316a8ab60dc78ee65a03e68031203a.zip | |
continue building base for irq handling
Diffstat (limited to 'arch/riscv64/include/regs.h')
| -rw-r--r-- | arch/riscv64/include/regs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/riscv64/include/regs.h b/arch/riscv64/include/regs.h new file mode 100644 index 0000000..699af8b --- /dev/null +++ b/arch/riscv64/include/regs.h @@ -0,0 +1,9 @@ +#ifndef APOS_RISCV_REGS_H +#define APOS_RISCV_REGS_H + +struct riscv_regs { + long ra, sp, gp, tp, t0, t1, t2, s0, s1, a0, a1, a2, a3, a4, a5, a6, a7, + s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, t3, t4, t5, t6; +}; + +#endif /* APOS_RISCV_REGS_H */ |
