refactoring whitespaces, no code change

This commit is contained in:
Aaron Culliney 2014-06-07 11:29:07 -07:00
parent ac0b132dee
commit 8791730b12

View File

@ -31,19 +31,16 @@
#define GetFromPC_B \
movl PC_Reg_E, EffectiveAddr_E; \
incw PC_Reg; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8);
call *SN(cpu65_vmem)(,EffectiveAddr_E,8);
#define GetFromPC_W \
movl PC_Reg_E, EffectiveAddr_E; \
incw EffectiveAddr; \
addw $2, PC_Reg; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8); \
call *SN(cpu65_vmem)(,EffectiveAddr_E,8); \
decw EffectiveAddr; \
movb %al, %ah; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8);
call *SN(cpu65_vmem)(,EffectiveAddr_E,8);
#define JumpNextInstruction \
GetFromPC_B \
@ -54,37 +51,31 @@
#define GetFromEA_B \
orb $1, DebugCurrRW; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8);
call *SN(cpu65_vmem)(,EffectiveAddr_E,8);
#define GetFromEA_W \
incw EffectiveAddr; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8); \
call *SN(cpu65_vmem)(,EffectiveAddr_E,8); \
decw EffectiveAddr; \
movb %al, %ah; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8);
call *SN(cpu65_vmem)(,EffectiveAddr_E,8);
#define PutToEA_B \
orb $2, DebugCurrRW; \
movb %al, DebugCurrByte; \
call *SN(cpu65_vmem)+4 \
(,EffectiveAddr_E,8);
call *SN(cpu65_vmem)+4(,EffectiveAddr_E,8);
#define GetFromMem_B(x) \
movl x, EffectiveAddr_E; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8);
call *SN(cpu65_vmem)(,EffectiveAddr_E,8);
#define GetFromMem_W(x) \
movl x, EffectiveAddr_E; \
incw EffectiveAddr; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8); \
call *SN(cpu65_vmem)(,EffectiveAddr_E,8); \
decw EffectiveAddr; \
movb %al, %ah; \
call *SN(cpu65_vmem) \
(,EffectiveAddr_E,8); \
call *SN(cpu65_vmem)(,EffectiveAddr_E,8);
#define Continue \
jmp continue;