evansm7 / umac

Micro Mac, minimalist Macintosh 128K emulator
82 stars 5 forks source link

memory #6

Open mix127 opened 4 days ago

mix127 commented 4 days ago

Mac can use 256K or more?

include/meybe changing machw.h

#ifdef M512
#define RAM_SIZE        (0x20000*1)
#else
#define RAM_SIZE        (0x20000*4)
#endif

or other options. Not everyone knows what value to insert. It can be, for example, 1 M

The emulator takes up an awful lot of resources. An unnaturally large amount. The processor even heats up. Other emulators don't have that.

evansm7 commented 4 days ago

Try it and see, it’s part of the fun. :) 512 works, I haven’t tried higher (but interested in what you find out!).

Can you describe what you mean about resources? Your comment lacks details that would help understand what’s going on. Memory measurement/process size?

The emulator itself is lightweight (intentionally, so it can run on an MCU with little memory or CPU power) so something else may be going on on your system. Linux? macOS? Something else?

Message to anyone reading: high-quality bug reports are important - I don’t have a lot of time to read this stuff so if you can’t debug something yourself at least give all possible info for others to debug for you. Thanks!