Newer
Older
CubeCactusCpp / run-os.sh
@agalyaramadoss agalyaramadoss on 6 Dec 220 bytes shell impelment
#!/bin/bash
# Run CubeCactusOS in QEMU

echo "Starting CubeCactusOS..."
echo "Press Ctrl+C to exit"
echo ""

qemu-system-i386 \
  -cdrom os/build/cubecactusos.iso \
  -m 512M \
  -serial stdio

echo ""
echo "OS exited."