
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@gct256/mbtools
Advanced tools
Development tools for MSX.
Makefile and use make command to building.$ npm install -g @gct256/mbtools
$ mkdir my-project
$ cd my-project
$ mbtools setup
$ make watch
mbtools configGenerate global configuration in interactive. Other command needs global configuration.
| name | description | default | note |
|---|---|---|---|
| asm.type | Type of assembler. | pasmo | currently only pasmo |
| asm.path | File path of assembler executable. | ||
| asm.ext | Extname of assembler source file. | .asm | |
| emu.type | Type of emulator. | openmsx | currently only openmsx |
| emu.path | File path of emulator executable. | ||
| pp.ext | Extname of preprocessor result file. | .inc | |
| dest.ext | Extname of destination file. | .rom |
mbtools setupGenerate Makefile on current directory in interactive.
After setup, use make to build.
| command line | action |
|---|---|
make | Build project. |
make clean | Remove generated files. |
make watch | Start watch mode. |
Normally not used. (used by Makefile)
mbtools watchStart watch mode.
mbtools js2asm FILE EXTGenerate assembler source file from JavaScript code.
FILE is file include JavaScript code.
EXT is output file's extname.
foo/bar/baz.js.incfoo/bar/baz.js.inc| JavaScript value | result |
|---|---|
| boolean, boolean[] | DB directive. (0 or 1) |
| number, number[] | DB directive. |
| Int8Array, Uint8Array, Uint8ClampedArray | DB directive. |
| Int16Array, Unt16Array | DW directive. |
| string, string[] | DB directive. (single quoted string) |
| other | Ignore. |
NOTE: nested array flatten.
mbtools png2asm FILE EXTGenerate assembler source file from PNG image file.
FILE is image file.
EXT is output file's extname.
foo/bar/baz.png.incfoo/bar/baz.png.incfoo/bar/baz.png.incfoo/bar/baz.png.inc, foo/bar/baz.png.qux.incConvertion method is desided according end of file name.
| end on file name | method | result |
|---|---|---|
.msx_sprite_8.png | 8x8 bit pattern | single |
.msx_sprite_16.png | 16x16 bit pattern | single |
.msx_screen_2.png | 8x8 bit pattern and 8x8 color data | multiple (.color) |
mbtools shrink SIZE IN OUTAdjust file size.
SIZE is file size by KiB
IN is input file path.
OUT is output file path.
FAQs
Development tools for MSX.
The npm package @gct256/mbtools receives a total of 6 weekly downloads. As such, @gct256/mbtools popularity was classified as not popular.
We found that @gct256/mbtools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.