mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
bcbe36db0c
* Refactor UI elements. * Cleanup. * Refactor core. * Fix printer. * Small fixes * Fix frame counts
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
|
|
*
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
* the above copyright notice appear in all copies and that both that
|
|
* copyright notice and this permission notice appear in supporting
|
|
* documentation. No representations are made about the suitability of this
|
|
* software for any purpose. It is provided "as is" without express or
|
|
* implied warranty.
|
|
*/
|
|
|
|
import { debug } from '../util';
|
|
import { rom } from '../roms/cards/parallel';
|
|
|
|
export default function Parallel(io, cbs) {
|
|
|
|
debug('Parallel card');
|
|
|
|
var LOC = {
|
|
IOREG: 0x80
|
|
};
|
|
|
|
function _access(off, val) {
|
|
switch (off & 0x8f) {
|
|
case LOC.IOREG:
|
|
if (cbs.putChar && val) {
|
|
cbs.putChar(val);
|
|
}
|
|
break;
|
|
default:
|
|
debug('Parallel card unknown softswitch', off);
|
|
}
|
|
}
|
|
|
|
return {
|
|
ioSwitch: function (off, val) {
|
|
return _access(off, val);
|
|
},
|
|
read: function(page, off) {
|
|
return rom[off];
|
|
},
|
|
write: function() {}
|
|
};
|
|
}
|