Subversion Repositories HelenOS-historic

Rev

Rev 1289 | Rev 1310 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1289 Rev 1292
Line 75... Line 75...
75
    /* Map videoram */
75
    /* Map videoram */
76
    for(a=0;a<((vesa_scanline*vesa_height+PAGE_SIZE-1)>>PAGE_WIDTH);a++)
76
    for(a=0;a<((vesa_scanline*vesa_height+PAGE_SIZE-1)>>PAGE_WIDTH);a++)
77
    page_mapping_insert(AS_KERNEL, videoram_lin_addr+a*4096, vesa_ph_addr+a*4096, PAGE_NOT_CACHEABLE);
77
    page_mapping_insert(AS_KERNEL, videoram_lin_addr+a*4096, vesa_ph_addr+a*4096, PAGE_NOT_CACHEABLE);
78
   
78
   
79
    fb_init( videoram_lin_addr,vesa_width,vesa_height,vesa_bpp,vesa_scanline);
79
    fb_init( videoram_lin_addr,vesa_width,vesa_height,vesa_bpp,vesa_scanline);
80
    putchar('\n');
-
 
81
}
80
}
82
 
81
 
83
#endif
82
#endif
84
 
83