move blit roms to /sys/lib/blit
This commit is contained in:
parent
5a36451a5e
commit
e51044884b
8 changed files with 2 additions and 2 deletions
|
@ -44,14 +44,14 @@ meminit(void)
|
|||
|
||||
p = rom;
|
||||
if(diag){
|
||||
bp = Bopen("diagbits", OREAD);
|
||||
bp = Bopen("/sys/lib/blit/diagbits", OREAD);
|
||||
if(bp == nil) sysfatal("Bopen: %r");
|
||||
Bread(bp, rom, sizeof(rom));
|
||||
Bterm(bp);
|
||||
return;
|
||||
}
|
||||
for(i = 0; i < 6; i++){
|
||||
bp = Bopen(smprint("rom%d", i), OREAD);
|
||||
bp = Bopen(smprint("/sys/lib/blit/rom%d", i), OREAD);
|
||||
if(bp == nil) sysfatal("Bopen: %r");
|
||||
q = p;
|
||||
for(;;){
|
||||
|
|
Loading…
Reference in a new issue