I want to create an emulator for an SBC I'm creating using a 68k CPU. The SBC will not have a hard-drive it is just CPU, EEPROM, RAM, LCD and a serial port. I will need to write a bootloader for this, and I wanted to try to create an emulator for testing code.
Is this possible with qemu? If it is possible, could you give me the command to spin up one of these?
It can be done, but it is not as simple as "run a command". You would need to add code to QEMU to implement the new machine type you want to emulate, plus code to implement any device models the machine has which QEMU doesn't yet have models of.