mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
sim: avr: move arch-specific settings to internal header
There's no need for these settings to be in sim-main.h which is shared with common/ sim code, so move it all out to a new header which only this port will include.
This commit is contained in:
@@ -20,24 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
#define SIM_MAIN_H
|
||||
|
||||
#include "sim-basics.h"
|
||||
|
||||
#include "sim-base.h"
|
||||
|
||||
struct avr_sim_cpu {
|
||||
/* The only real register. */
|
||||
uint32_t pc;
|
||||
|
||||
/* We update a cycle counter. */
|
||||
uint32_t cycles;
|
||||
};
|
||||
|
||||
#define AVR_SIM_CPU(cpu) ((struct avr_sim_cpu *) CPU_ARCH_DATA (cpu))
|
||||
|
||||
struct avr_sim_state {
|
||||
/* If true, the pc needs more than 2 bytes. */
|
||||
int avr_pc22;
|
||||
};
|
||||
|
||||
#define AVR_SIM_STATE(sd) ((struct avr_sim_state *) STATE_ARCH_DATA (sd))
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user