DOSBox-X
|
00001 00002 #include "dos_inc.h" 00003 00004 static const unsigned char bin_28_com[] = { 0xB8, 0x11, 0x11, 0x30, 0xDB, 0xCD, 0x10, 0xC3 }; 00005 00006 struct BuiltinFileBlob bfb_28_COM = { 00007 /*recommended file name*/ "28.COM", 00008 /*data*/ bin_28_com, 00009 /*length*/ sizeof(bin_28_com) 00010 }; 00011 00012 static const unsigned char bin_28_com_ega[] = { 0xB8, 0x12, 0x11, 0x30, 0xDB, 0xCD, 0x10, 0xC3 }; 00013 00014 struct BuiltinFileBlob bfb_28_COM_ega = { 00015 /*recommended file name*/ "28.COM", 00016 /*data*/ bin_28_com_ega, 00017 /*length*/ sizeof(bin_28_com_ega) 00018 }; 00019