Skip to content

Commit

Permalink
Patch ~ op, build config
Browse files Browse the repository at this point in the history
  • Loading branch information
soxfox42 authored Sep 8, 2024
1 parent 0b28490 commit 7e92f0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"source": "src/index.html",
"targets": {
"default": {
"publicUrl": "/txybniz/"
"publicUrl": "./"
}
},
"scripts": {
"start": "parcel",
"build": "rm -rf dist && parcel build"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"parcel": "^2.8.3"
"@parcel/transformer-sass": "^2.12.0",
"parcel": "^2.12.0"
}
}
2 changes: 1 addition & 1 deletion src/vm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class VM {
[a, b] = this.pop(2);
this.push(a << (b / FIX));
break;
case 'l':
case '~':
[a] = this.pop(1);
this.push(~a);
break;
Expand Down

0 comments on commit 7e92f0f

Please sign in to comment.