minor source formatting issues
This commit is contained in:
@@ -38,7 +38,6 @@ function UxnCore() {
|
||||
}
|
||||
|
||||
function rel(x) {return x > 0x80 ? x - 256 : x}
|
||||
|
||||
function PUSH8(s, x) {if(s.ptr === 255) trapout(2);s.dat[s.ptr++] = x}
|
||||
function PUSH16(s, x) {PUSH8(s, x>>8);PUSH8(s, x&255)}
|
||||
function PUSH(s, x) {if(bs) PUSH16(s, x);else PUSH8(s, x)}
|
||||
@@ -187,5 +186,4 @@ function UxnCore() {
|
||||
if(targetAddr) uxnstart(targetAddr)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user