An emulator, assembler, and disassembler for the Sega Game Gear
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
493 B

  1. /* Copyright (C) 2014-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
  2. Released under the terms of the MIT License. See LICENSE for details. */
  3. #include "iomanager.h"
  4. #include "logging.h"
  5. /*
  6. Emulate a Game Gear. Handle I/O with the host computer.
  7. Block until emulation is finished.
  8. */
  9. void iomanager_emulate(GameGear *gg)
  10. {
  11. DEBUG("IOManager powering GameGear")
  12. gamegear_power(gg, true);
  13. // TODO
  14. DEBUG("IOManager unpowering GameGear")
  15. gamegear_power(gg, false);
  16. }