diff options
author | Karl Kurbjun <kkurbjun@gmail.com> | 2007-09-25 01:44:57 +0000 |
---|---|---|
committer | Karl Kurbjun <kkurbjun@gmail.com> | 2007-09-25 01:44:57 +0000 |
commit | 968ba0a277d2437f109b8b1dde66dacfc5ee2126 (patch) | |
tree | 8e57a44709f01102a227e240b7476d02eabe9c6a /bootloader/mrobe500.c | |
parent | 7255bdbb6ad04a5e79cef0e4f68a5e339683fd21 (diff) | |
download | rockbox-968ba0a277d2437f109b8b1dde66dacfc5ee2126.tar.gz rockbox-968ba0a277d2437f109b8b1dde66dacfc5ee2126.zip |
More ATA work (that doesn't work)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14848 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader/mrobe500.c')
-rwxr-xr-x | bootloader/mrobe500.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/mrobe500.c b/bootloader/mrobe500.c index 57df653f10..86415cb560 100755 --- a/bootloader/mrobe500.c +++ b/bootloader/mrobe500.c @@ -99,7 +99,7 @@ void main(void) reset_screen();
lcd_update();
}
-
+#if 0
int button=0, *address=0x0, count=0;
while(true)
{
@@ -118,7 +118,7 @@ void main(void) else if (button==BUTTON_RC_REW)
address-=0x1000;
- // if ((inw(IO_GIO_BITSET0)&(1<<14)) == 0)
+ // if ((IO_GIO_BITSET0&(1<<14) == 0)
{
short x,y,z1,z2, reg;
tsc2100_read_values(&x, &y, &z1, &z2);
@@ -132,7 +132,7 @@ void main(void) line -= 6;
}
}
-
+#endif
printf("ATA");
rc = ata_init();
if(rc)
|