add iPod and GRUB bootloader beeper tune export (#2441)
This commit is contained in:
parent
24b629c73c
commit
055266090a
11 changed files with 522 additions and 0 deletions
|
|
@ -23,6 +23,8 @@
|
|||
#include "export/sapr.h"
|
||||
#include "export/tiuna.h"
|
||||
#include "export/zsm.h"
|
||||
#include "export/ipod.h"
|
||||
#include "export/grub.h"
|
||||
|
||||
DivROMExport* DivEngine::buildROM(DivROMExportOptions sys) {
|
||||
DivROMExport* exporter=NULL;
|
||||
|
|
@ -39,6 +41,12 @@ DivROMExport* DivEngine::buildROM(DivROMExportOptions sys) {
|
|||
case DIV_ROM_SAP_R:
|
||||
exporter=new DivExportSAPR;
|
||||
break;
|
||||
case DIV_ROM_IPOD:
|
||||
exporter=new DivExportiPod;
|
||||
break;
|
||||
case DIV_ROM_GRUB:
|
||||
exporter=new DivExportGRUB;
|
||||
break;
|
||||
default:
|
||||
exporter=new DivROMExport;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue