1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2026-04-19 09:23:06 +00:00

Update a few more tests

This commit is contained in:
David Schmenk
2017-11-15 15:22:01 -08:00
parent 7a8b754794
commit 6ea55e3038
2 changed files with 28 additions and 9 deletions
+10 -9
View File
@@ -148,10 +148,10 @@ end
// putc('$')
// call($FDDA, h, 0, 0, 0)
//end
def prword(h)#0
putc('$')
call($F941, h >> 8, h, 0, 0)
end
//def prword(h)#0
// putc('$')
// call($F941, h >> 8, h, 0, 0)
//end
//def putname(pchr)#0
// byte c
//
@@ -330,16 +330,17 @@ end
//
// Uninitialized placeholders of API
//
def uninit0()
def uninit
puts("SANE not initialized\n")
return -1
end
def uninit0()
return uninit
end
def uninit1(op, dst)
puts("SANE not initialized\n")
return -1
return uninit
end
def uninit2(op, dst, src)
puts("SANE not initialized\n")
return -1
return uninit
end
done