sparc: more cleanup
This commit is contained in:
@ -43,8 +43,6 @@ static void sun4u_init(struct uc_struct *uc, MachineState *machine)
|
|||||||
fprintf(stderr, "Unable to find Sparc CPU definition\n");
|
fprintf(stderr, "Unable to find Sparc CPU definition\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
cpu_sparc_set_id(&cpu->env, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void sun4u_machine_init(struct uc_struct *uc)
|
void sun4u_machine_init(struct uc_struct *uc)
|
||||||
|
@ -69,12 +69,6 @@ int sparc_reg_read(struct uc_struct *uc, unsigned int regid, void *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
|
||||||
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
|
||||||
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | (b & 0xff))
|
|
||||||
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
|
||||||
|
|
||||||
int sparc_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
int sparc_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
||||||
{
|
{
|
||||||
CPUState *mycpu = first_cpu;
|
CPUState *mycpu = first_cpu;
|
||||||
|
@ -69,12 +69,6 @@ int sparc_reg_read(struct uc_struct *uc, unsigned int regid, void *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
|
||||||
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
|
||||||
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | (b & 0xff))
|
|
||||||
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
|
||||||
|
|
||||||
int sparc_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
int sparc_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
||||||
{
|
{
|
||||||
CPUState *mycpu = first_cpu;
|
CPUState *mycpu = first_cpu;
|
||||||
|
Reference in New Issue
Block a user