Build pci_drv for framebuffer test / fix warning

This commit is contained in:
Christian Helmuth 2012-12-17 14:30:55 +01:00 committed by Norman Feske
parent 2283536b27
commit 97e4470da6
2 changed files with 6 additions and 9 deletions

View File

@ -2,7 +2,7 @@
# Build
#
build { core init test/framebuffer drivers/framebuffer drivers/timer }
build { core init test/framebuffer drivers/framebuffer drivers/pci drivers/timer }
create_boot_directory

View File

@ -35,14 +35,11 @@ int main()
Framebuffer::Mode const fb_mode = fb.mode();
/* write pixeldata to framebuffer */
void * fb_base = env()->rm_session()->attach(fb_ds_cap);
unsigned j;
unsigned const fb_size = (unsigned)(mode.width()*mode.height())/2;
for(unsigned i = 0; i < fb_size; i++)
{
*(((unsigned volatile *)fb_base) + i) = j;
j++;
}
void *fb_base = env()->rm_session()->attach(fb_ds_cap);
unsigned const fb_size = (unsigned)(mode.width()*mode.height())/2;
for (unsigned i = 0; i < fb_size; i++)
*(((unsigned volatile *)fb_base) + i) = i;
fb.refresh(0, 0, fb_mode.width(), fb_mode.height());
printf("--- end ---\n");
while(1);