mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Run code through the advanced tool 'sed' to remove trailing whitespace.
This commit is contained in:
@ -38,29 +38,29 @@ void init_crap() {
|
||||
VIDEO_Init();
|
||||
WPAD_Init();
|
||||
PAD_Init();
|
||||
|
||||
|
||||
// Obtain the preferred video mode from the system
|
||||
// This will correspond to the settings in the Wii menu
|
||||
rmode = VIDEO_GetPreferredMode(NULL);
|
||||
|
||||
|
||||
// Allocate memory for the display in the uncached region
|
||||
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
||||
|
||||
|
||||
// Initialise the console, required for printf
|
||||
console_init(xfb,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*VI_DISPLAY_PIX_SZ);
|
||||
|
||||
|
||||
// Set up the video registers with the chosen mode
|
||||
VIDEO_Configure(rmode);
|
||||
|
||||
|
||||
// Tell the video hardware where our display memory is
|
||||
VIDEO_SetNextFramebuffer(xfb);
|
||||
|
||||
|
||||
// Make the display visible
|
||||
VIDEO_SetBlack(FALSE);
|
||||
|
||||
|
||||
// Flush the video register changes to the hardware
|
||||
VIDEO_Flush();
|
||||
|
||||
|
||||
// Wait for Video setup to complete
|
||||
VIDEO_WaitVSync();
|
||||
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
|
||||
|
@ -59,22 +59,22 @@ void ShowModifies(u32 inst)
|
||||
void RunInstruction(u32 inst)
|
||||
{
|
||||
u32 inval1, inval2, inval3;
|
||||
|
||||
|
||||
u32 outval = 0;
|
||||
|
||||
|
||||
// CR0
|
||||
u32 cr1 = 0, cr2 = 0;
|
||||
|
||||
|
||||
//CR1
|
||||
u32 cr11 = 0, cr12 = 0;
|
||||
|
||||
|
||||
//XER
|
||||
u32 xer1 = 0, xer2 = 0;
|
||||
|
||||
|
||||
bool modCR0 = instructions[inst].Modifies & MOD_CR0;
|
||||
bool modCR1 = instructions[inst].Modifies & MOD_CR1;
|
||||
bool modXER = instructions[inst].Modifies & MOD_XER;
|
||||
|
||||
|
||||
if(instructions[inst].numInput != 3)
|
||||
{
|
||||
Print("Don't support Input not 3 yet~!\n");
|
||||
@ -92,7 +92,7 @@ void RunInstruction(u32 inst)
|
||||
f = fopen(temp, "wb");
|
||||
if (!f)
|
||||
printf("unable to open output file\n");
|
||||
|
||||
|
||||
printf("%s: InputNum: %d Modifies(flags): ", instructions[inst].name, instructions[inst].numInput);
|
||||
if(f)
|
||||
fprintf(f, "%s: InputNum: %d Modifies(flags): ", instructions[inst].name, instructions[inst].numInput);
|
||||
@ -119,7 +119,7 @@ void RunInstruction(u32 inst)
|
||||
|
||||
//Actually call instruction
|
||||
instructions[inst].Call(&outval, &inval1, &inval2, 0);
|
||||
|
||||
|
||||
// Get flags after
|
||||
if(modCR0)
|
||||
cr2 = GetCR0();
|
||||
@ -130,7 +130,7 @@ void RunInstruction(u32 inst)
|
||||
|
||||
// Print out value
|
||||
printf(":o=%08x\n\t", outval);
|
||||
|
||||
|
||||
// show off flag changes
|
||||
if(modCR0)
|
||||
printf("CR0:(%08x ~ %08x)", cr1,cr2);
|
||||
@ -138,8 +138,8 @@ void RunInstruction(u32 inst)
|
||||
printf("CR1:(%08x ~ %08x)", cr11,cr12);
|
||||
if(modXER)
|
||||
printf("XER:(%08x ~ %08x)", xer1, xer2);
|
||||
|
||||
|
||||
|
||||
|
||||
// same in the file
|
||||
if(f)
|
||||
{
|
||||
|
@ -32,7 +32,7 @@ struct inst
|
||||
inst_type type;
|
||||
void (*Call)(u32*, u32*, u32*, u32*);
|
||||
void (*CallFP)(float*, float*, float*, float*);
|
||||
|
||||
|
||||
};
|
||||
|
||||
static inst instructions[] = {
|
||||
|
@ -31,13 +31,13 @@ int main(int argc, char **argv)
|
||||
{
|
||||
init_crap();
|
||||
initialise_fat();
|
||||
|
||||
|
||||
for (uint a = 0; a < sizeof(instructions) / sizeof(inst); ++a)
|
||||
{
|
||||
RunInstruction(a);
|
||||
}
|
||||
|
||||
|
||||
end();
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ int main(int argc, char **argv) {
|
||||
while(1) {
|
||||
PAD_ScanPads();
|
||||
VIDEO_ClearFrameBuffer(rmode, xfb, 0);
|
||||
|
||||
|
||||
|
||||
VIDEO_WaitVSync();
|
||||
}
|
||||
@ -37,12 +37,12 @@ void * Initialise() {
|
||||
|
||||
VIDEO_Init();
|
||||
PAD_Init();
|
||||
|
||||
|
||||
rmode = VIDEO_GetPreferredMode(NULL);
|
||||
|
||||
framebuffer = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
||||
console_init(framebuffer,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*VI_DISPLAY_PIX_SZ);
|
||||
|
||||
|
||||
VIDEO_Configure(rmode);
|
||||
VIDEO_SetNextFramebuffer(framebuffer);
|
||||
VIDEO_SetBlack(FALSE);
|
||||
|
@ -191,7 +191,7 @@
|
||||
|
||||
#define STATE_OFFSET 204
|
||||
#define MODE_OFFSET 206
|
||||
|
||||
|
||||
#define FPR0_OFFSET 208
|
||||
#define FPR1_OFFSET 216
|
||||
#define FPR2_OFFSET 224
|
||||
@ -267,13 +267,13 @@
|
||||
#define EXCEPTION_FRAME_END 728
|
||||
|
||||
#define IBAT0U 528
|
||||
#define IBAT0L 529
|
||||
#define IBAT1U 530
|
||||
#define IBAT1L 531
|
||||
#define IBAT2U 532
|
||||
#define IBAT2L 533
|
||||
#define IBAT3U 534
|
||||
#define IBAT3L 535
|
||||
#define IBAT0L 529
|
||||
#define IBAT1U 530
|
||||
#define IBAT1L 531
|
||||
#define IBAT2U 532
|
||||
#define IBAT2L 533
|
||||
#define IBAT3U 534
|
||||
#define IBAT3L 535
|
||||
#define IBAT4U 560
|
||||
#define IBAT4L 561
|
||||
#define IBAT5U 562
|
||||
@ -284,12 +284,12 @@
|
||||
#define IBAT7L 567
|
||||
|
||||
#define DBAT0U 536
|
||||
#define DBAT0L 537
|
||||
#define DBAT1U 538
|
||||
#define DBAT1L 539
|
||||
#define DBAT2U 540
|
||||
#define DBAT2L 541
|
||||
#define DBAT3U 542
|
||||
#define DBAT0L 537
|
||||
#define DBAT1U 538
|
||||
#define DBAT1L 539
|
||||
#define DBAT2U 540
|
||||
#define DBAT2L 541
|
||||
#define DBAT3U 542
|
||||
#define DBAT3L 543
|
||||
#define DBAT4U 568
|
||||
#define DBAT4L 569
|
||||
@ -302,7 +302,7 @@
|
||||
|
||||
#define HID0 1008
|
||||
#define HID1 1009
|
||||
#define HID2 920
|
||||
#define HID2 920
|
||||
#define HID4 1011
|
||||
|
||||
#define GQR0 912
|
||||
|
@ -58,7 +58,7 @@ int main()
|
||||
(pad[a].button & PAD_BUTTON_LEFT ? "Left " : "")<<
|
||||
(pad[a].button & PAD_BUTTON_RIGHT ? "Right " : "")<<std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Initialise()
|
||||
|
@ -131,7 +131,7 @@ void print_and_draw_wiimote_data(void *screen_buffer) {
|
||||
std::cout<<" @ "<<wd->ir.angle<<" deg\n";
|
||||
|
||||
drawdot(screen_buffer, rmode, rmode->fbWidth, rmode->xfbHeight, wd->ir.x, wd->ir.y, COLOR_RED);
|
||||
drawdot(screen_buffer, rmode, rmode->fbWidth, rmode->xfbHeight, wd->ir.x + 10*sinf(theta), wd->ir.y - 10*cosf(theta), COLOR_BLUE);
|
||||
drawdot(screen_buffer, rmode, rmode->fbWidth, rmode->xfbHeight, wd->ir.x + 10*sinf(theta), wd->ir.y - 10*cosf(theta), COLOR_BLUE);
|
||||
} else {
|
||||
std::cout<<" No Cursor\n\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user