diff options
Diffstat (limited to 'ortho/mcode/disa_sparc.ads')
-rw-r--r-- | ortho/mcode/disa_sparc.ads | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ortho/mcode/disa_sparc.ads b/ortho/mcode/disa_sparc.ads new file mode 100644 index 0000000..486dff9 --- /dev/null +++ b/ortho/mcode/disa_sparc.ads @@ -0,0 +1,15 @@ +with System; + +package Disa_Sparc is + -- Call-back used to find a relocation symbol. + type Symbol_Proc_Type is access procedure (Addr : System.Address; + Line : in out String; + Line_Len : in out Natural); + + -- Disassemble instruction at ADDR, and put the result in LINE/LINE_LEN. + procedure Disassemble_Insn (Addr : System.Address; + Line : in out String; + Line_Len : out Natural; + Insn_Len : out Natural; + Proc_Cb : Symbol_Proc_Type); +end Disa_Sparc; |