mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Fix build, clean up lint comments.
This commit is contained in:
parent
6a5fd9cf0c
commit
2963f116ce
@ -1,5 +1,3 @@
|
||||
/*exported base64_encode, base64_decode */
|
||||
|
||||
export function base64_encode (data) {
|
||||
// Twacked by Will Scullin to handle arrays of "bytes"
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported IntBasicDump */
|
||||
|
||||
export default function IntBasicDump(mem)
|
||||
{
|
||||
var _mem = mem;
|
||||
|
@ -1,6 +1,6 @@
|
||||
// From https://github.com/Klaus2m5/6502_65C02_functional_tests
|
||||
/*exported Test6502 */
|
||||
/*global toHex */
|
||||
|
||||
import { toHex } from '../util';
|
||||
|
||||
var LOG = false;
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// From https://github.com/Klaus2m5/6502_65C02_functional_tests
|
||||
|
||||
/*exported Test65C02 */
|
||||
/*global toHex */
|
||||
import { toHex } from '../util';
|
||||
|
||||
var LOG = false;
|
||||
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported apple2_charset */
|
||||
|
||||
var apple2_charset = [
|
||||
0x00,0x1c,0x22,0x2a,0x2e,0x2c,0x20,0x1e,
|
||||
0x00,0x08,0x14,0x22,0x22,0x3e,0x22,0x22,
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported Apple2eROM*/
|
||||
|
||||
export default function Apple2eROM()
|
||||
{
|
||||
var rom = [
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported Apple2eEnhancedROM */
|
||||
|
||||
export default function Apple2eEnhancedROM()
|
||||
{
|
||||
var rom = [
|
||||
|
@ -1,5 +1,3 @@
|
||||
/* exported apple2enh_charset */
|
||||
|
||||
var apple2enh_charset = [
|
||||
0x1c,0x22,0x2a,0x3a,0x1a,0x02,0x3c,0x00,
|
||||
0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported Apple2jROM */
|
||||
|
||||
export default function Apple2jROM()
|
||||
{
|
||||
var rom = [
|
||||
|
@ -1,5 +1,3 @@
|
||||
/* exported apple2j_charset */
|
||||
|
||||
var apple2j_charset = [
|
||||
0xff,0xef,0xe1,0xed,0xd5,0xfb,0xf7,0xef,
|
||||
0xff,0xfb,0xc7,0xf7,0xc1,0xf7,0xf7,0xef,
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported apple2lc_charset */
|
||||
|
||||
var apple2lc_charset = [
|
||||
0x1c,0x22,0x2a,0x2a,0x2c,0x20,0x1e,0x00,
|
||||
0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported pigfont_charset */
|
||||
|
||||
var pigfont_charset = [
|
||||
0x00,0x1c,0x22,0x2a,0x2e,0x20,0x1e,0x00,
|
||||
0x0c,0x12,0x21,0x3f,0x21,0x21,0x00,0x00,
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported rmfont_charset */
|
||||
|
||||
var rmfont_charset = [
|
||||
0x3c,0x42,0x59,0x55,0x55,0x39,0x02,0x3c,
|
||||
0x08,0x14,0x22,0x22,0x3e,0x22,0x22,0x00,
|
||||
|
@ -1,5 +1,3 @@
|
||||
/*exported SYMBOLS */
|
||||
|
||||
var SYMBOLS = {
|
||||
/*
|
||||
0x00: 'GOWARM',
|
||||
|
@ -6,8 +6,7 @@ module.exports =
|
||||
devtool: 'source-map',
|
||||
entry: {
|
||||
main2: path.resolve('js/main2.js'),
|
||||
main2e: path.resolve('js/main2e.js'),
|
||||
test: path.resolve('js/test.js')
|
||||
main2e: path.resolve('js/main2e.js')
|
||||
},
|
||||
output: {
|
||||
path: path.resolve('dist/')
|
||||
|
Loading…
x
Reference in New Issue
Block a user