Files
ivy/asm/reader.h

24 lines
444 B
C
Raw Permalink Normal View History

2025-05-12 15:51:03 +01:00
#ifndef _ASM_READER_H_
#define _ASM_READER_H_
#include <ivy/asm/reader.h>
#include <stdio.h>
struct ivy_asm_reader {
FILE *r_fp;
struct ivy_asm_object_info r_info;
struct ivy_asm_section_info *r_sections;
};
struct ivy_asm_section_reader {
struct ivy_asm_reader *r_parent;
const struct ivy_asm_section_info *r_info;
};
struct ivy_asm_constpool_reader {
size_t r_nr_entries;
struct ivy_asm_section_reader *r_pool, *r_xdat;
};
2025-05-12 15:51:03 +01:00
#endif