Skip to content

Commit

Permalink
Up RAMFactor memory to 8M (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
whscullin authored May 18, 2024
1 parent fcfa0ad commit ab2d482
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/components/Slinky.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface SlinkyProps {
export const Slinky = ({ io, slot }: SlinkyProps) => {
useEffect(() => {
if (io) {
const slinky = new RAMFactor(1024 * 1024);
const slinky = new RAMFactor(8 * 1024 * 1024);
io.setSlot(slot, slinky);
}
}, [io, slot]);
Expand Down
2 changes: 1 addition & 1 deletion js/main2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ apple2.ready
const lc = new LanguageCard(apple2.getROM());
const parallel = new Parallel(printer);
const videoTerm = new VideoTerm();
const slinky = new RAMFactor(1024 * 1024);
const slinky = new RAMFactor(8 * 1024 * 1024);
const disk2 = new DiskII(io, driveLights, sectors);
const clock = new Thunderclock();
const smartport = new SmartPort(cpu, null, { block: true });
Expand Down
2 changes: 1 addition & 1 deletion js/main2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ apple2.ready
const mouseUI = new MouseUI(options.canvas);

const parallel = new Parallel(printer);
const slinky = new RAMFactor(1024 * 1024);
const slinky = new RAMFactor(8 * 1024 * 1024);
const disk2 = new DiskII(io, driveLights);
const clock = new Thunderclock();
const smartport = new SmartPort(cpu, null, { block: !enhanced });
Expand Down

0 comments on commit ab2d482

Please sign in to comment.