Fix blitter

git-svn-id: svn://kolibrios.org@8412 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
maxcodehack 2020-12-15 07:28:59 +00:00
parent 36193aaf9a
commit 55bacdc367

View File

@ -469,9 +469,7 @@ struct blit_call
void kos_blit(int dstx, int dsty, int w, int h, int srcx,
int srcy,int srcw, int srch, int stride, char *d)
{
// Page fault
/*
struct blit_call image;
volatile struct blit_call image;
image.dstx=dstx;
image.dsty=dsty;
image.w=w;
@ -483,6 +481,6 @@ void kos_blit(int dstx, int dsty, int w, int h, int srcx,
image.stride=stride;
image.d=d;
asm("int $0x40"::"a"(73),"b"(0),"c"(&image));
*/
}