Cosmetic changes
git-svn-id: svn://svn.cc65.org/cc65/trunk@1578 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
4dd4e76a88
commit
d0fabdba7f
1 changed files with 5 additions and 5 deletions
|
@ -207,17 +207,17 @@ int main (void)
|
||||||
while (!kbhit()) {
|
while (!kbhit()) {
|
||||||
/* Build page 1, then make it visible */
|
/* Build page 1, then make it visible */
|
||||||
scrn = (unsigned char*)SCREEN1;
|
scrn = (unsigned char*)SCREEN1;
|
||||||
doplasma();
|
doplasma ();
|
||||||
outb (&VIC.addr, PAGE1);
|
outb (&VIC.addr, PAGE1);
|
||||||
|
|
||||||
/* Build page 2, then make it visible */
|
/* Build page 2, then make it visible */
|
||||||
scrn = (unsigned char*)SCREEN2;
|
scrn = (unsigned char*)SCREEN2;
|
||||||
doplasma();
|
doplasma ();
|
||||||
outb (&VIC.addr, PAGE2);
|
outb (&VIC.addr, PAGE2);
|
||||||
|
|
||||||
/* Count frames */
|
/* Count frames */
|
||||||
f += 2;
|
f += 2;
|
||||||
};
|
}
|
||||||
t = clock() - t;
|
t = clock() - t;
|
||||||
|
|
||||||
/* Switch back the VIC screen */
|
/* Switch back the VIC screen */
|
||||||
|
@ -240,7 +240,7 @@ int main (void)
|
||||||
bordercolor (border);
|
bordercolor (border);
|
||||||
bgcolor (background);
|
bgcolor (background);
|
||||||
textcolor (text);
|
textcolor (text);
|
||||||
clrscr();
|
clrscr ();
|
||||||
|
|
||||||
/* Calculate stats */
|
/* Calculate stats */
|
||||||
sec = (t * 10) / CLK_TCK;
|
sec = (t * 10) / CLK_TCK;
|
||||||
|
|
Loading…
Add table
Reference in a new issue