Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
@@ -106,7 +106,7 @@ static const struct ChipData CData[] = {
|
||||
/* -- Exported functions -- */
|
||||
ScreenInitChip,
|
||||
ScreenCreateInstance,
|
||||
ScreenDestroyInstance,
|
||||
ScreenDestroyInstance,
|
||||
ScreenWrite,
|
||||
ScreenWrite,
|
||||
ScreenRead,
|
||||
@@ -624,7 +624,7 @@ static void ScreenEventLoop (void)
|
||||
switch (Event.type) {
|
||||
|
||||
case Expose:
|
||||
/* Calculate the area to redraw, then update the screen */
|
||||
/* Calculate the area to redraw, then update the screen */
|
||||
X1 = Event.xexpose.x;
|
||||
Y1 = Event.xexpose.y;
|
||||
X2 = Event.xexpose.x + Event.xexpose.width - 1;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
/*****************************************************************************/
|
||||
/* */
|
||||
/* ram.c */
|
||||
/* ram.c */
|
||||
/* */
|
||||
/* RAM plugin for the sim65 6502 simulator */
|
||||
/* RAM plugin for the sim65 6502 simulator */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -87,7 +87,7 @@ static const struct ChipData CData[1] = {
|
||||
/* -- Exported functions -- */
|
||||
InitChip,
|
||||
CreateInstance,
|
||||
DestroyInstance,
|
||||
DestroyInstance,
|
||||
WriteCtrl,
|
||||
Write,
|
||||
ReadCtrl,
|
||||
@@ -100,7 +100,7 @@ static const SimData* Sim;
|
||||
|
||||
/* Possible RAM attributes */
|
||||
#define ATTR_INITIALIZED 0x01 /* RAM cell is intialized */
|
||||
#define ATTR_WPROT 0x02 /* RAM cell is write protected */
|
||||
#define ATTR_WPROT 0x02 /* RAM cell is write protected */
|
||||
|
||||
/* Data for one RAM instance */
|
||||
typedef struct InstanceData InstanceData;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
/*****************************************************************************/
|
||||
/* */
|
||||
/* rom.c */
|
||||
/* rom.c */
|
||||
/* */
|
||||
/* ROM plugin for the sim65 6502 simulator */
|
||||
/* ROM plugin for the sim65 6502 simulator */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -89,7 +89,7 @@ static const struct ChipData CData[1] = {
|
||||
/* -- Exported functions -- */
|
||||
InitChip,
|
||||
CreateInstance,
|
||||
DestroyInstance,
|
||||
DestroyInstance,
|
||||
WriteCtrl,
|
||||
Write,
|
||||
ReadCtrl,
|
||||
@@ -224,7 +224,7 @@ static void Write (void* Data, unsigned Offs, unsigned char Val)
|
||||
|
||||
/* Print a warning */
|
||||
Sim->Break ("Writing to write protected memory at $%04X (value = $%02X)",
|
||||
D->BaseAddr+Offs, Val);
|
||||
D->BaseAddr+Offs, Val);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
/*****************************************************************************/
|
||||
/* */
|
||||
/* stdio.c */
|
||||
/* stdio.c */
|
||||
/* */
|
||||
/* STDIO plugin for the sim65 6502 simulator */
|
||||
/* STDIO plugin for the sim65 6502 simulator */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -94,7 +94,7 @@ static const struct ChipData CData[1] = {
|
||||
/* -- Exported functions -- */
|
||||
InitChip,
|
||||
CreateInstance,
|
||||
DestroyInstance,
|
||||
DestroyInstance,
|
||||
WriteCtrl,
|
||||
Write,
|
||||
ReadCtrl,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
/* */
|
||||
/* vic2.c */
|
||||
/* */
|
||||
/* VIC II plugin for the sim65 6502 simulator */
|
||||
/* VIC II plugin for the sim65 6502 simulator */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
@@ -136,7 +136,7 @@ static const struct ChipData CData[] = {
|
||||
/* -- Exported functions -- */
|
||||
VicInitChip,
|
||||
VicCreateInstance,
|
||||
VicDestroyInstance,
|
||||
VicDestroyInstance,
|
||||
VicWrite,
|
||||
VicWrite,
|
||||
VicRead,
|
||||
@@ -151,7 +151,7 @@ static const struct ChipData CData[] = {
|
||||
/* -- Exported functions -- */
|
||||
VRamInitChip,
|
||||
VRamCreateInstance,
|
||||
VRamDestroyInstance,
|
||||
VRamDestroyInstance,
|
||||
VRamWrite,
|
||||
VRamWrite,
|
||||
VRamRead,
|
||||
@@ -166,7 +166,7 @@ static const struct ChipData CData[] = {
|
||||
/* -- Exported functions -- */
|
||||
CRamInitChip,
|
||||
CRamCreateInstance,
|
||||
CRamDestroyInstance,
|
||||
CRamDestroyInstance,
|
||||
CRamWrite,
|
||||
CRamWrite,
|
||||
CRamRead,
|
||||
@@ -176,8 +176,8 @@ static const struct ChipData CData[] = {
|
||||
|
||||
/* Defines for the VIC chip */
|
||||
#define VIC_COLOR_COUNT 16
|
||||
#define VIC_BLACK 0
|
||||
#define VIC_WHITE 1
|
||||
#define VIC_BLACK 0
|
||||
#define VIC_WHITE 1
|
||||
|
||||
/* The application color map. VIC II color values are taken from
|
||||
* http://www.pepto.de/projects/colorvic/ (Philip "Pepto" Timmermann)
|
||||
@@ -774,7 +774,7 @@ static void VRamEventLoop (void)
|
||||
switch (Event.type) {
|
||||
|
||||
case Expose:
|
||||
/* Calculate the area to redraw, then update the screen */
|
||||
/* Calculate the area to redraw, then update the screen */
|
||||
X1 = Event.xexpose.x;
|
||||
Y1 = Event.xexpose.y;
|
||||
X2 = Event.xexpose.x + Event.xexpose.width - 1;
|
||||
|
||||
Reference in New Issue
Block a user