diff options
| author | Sigrid <ftrvxmtrx@gmail.com> | 2020-12-08 10:08:49 +0100 |
|---|---|---|
| committer | Sigrid <ftrvxmtrx@gmail.com> | 2020-12-08 10:08:49 +0100 |
| commit | 8f9d4d7c27c5a26962c122c185549be24716571f (patch) | |
| tree | d12440594a0e43946164793b441c66937f4c9ee1 | |
| parent | 96850d8bb40e282217776e17977dd8ac10d0d10f (diff) | |
| download | plan9front-8f9d4d7c27c5a26962c122c185549be24716571f.tar.xz | |
vesa: make unsupported function not an error, set return status
| -rw-r--r-- | sys/src/cmd/vmx/vesa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/cmd/vmx/vesa.c b/sys/src/cmd/vmx/vesa.c index 35c7a0d38..61eeb5c2c 100644 --- a/sys/src/cmd/vmx/vesa.c +++ b/sys/src/cmd/vmx/vesa.c @@ -622,7 +622,8 @@ vesathread(void *) if(vesaddc(&ur) < 0 || vesasetregs(sp, &ur) < 0) continue; break; default: - vmerror("vesa: unsupported function %#x", ur.ax); + vesasetax(sp, 0x0100); + vmdebug("vesa: unsupported function %#x", ur.ax); } } } |
