Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Up RAMFactor memory to 8M #218

Merged
merged 1 commit into from
May 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading