minix/kernel/arch/i386/debugreg.S

28 lines
447 B
ArmAsm
Raw Normal View History

#include <machine/asm.h>
#define LD_ST_REG(reg) ;\
ENTRY(ld_##reg) ;\
mov 4(%esp), %eax ;\
mov %eax, %reg ;\
ret ;\
;\
ENTRY(st_##reg) ;\
mov %reg, %eax ;\
ret
/*
2010-04-28 10:35:05 +02:00
* void ld_dr0(phys_bytes value)
* phys_bytes st_dr0(void)
*/
LD_ST_REG(dr0)
LD_ST_REG(dr1)
LD_ST_REG(dr2)
LD_ST_REG(dr3)
2010-04-28 10:35:05 +02:00
/*
* void ld_dr0(unsigned long value)
* unsigned long st_dr0(void)
*/
LD_ST_REG(dr6)
LD_ST_REG(dr7)