DOSBox-X
|
00001 00002 #include "dos_inc.h" 00003 00004 static const unsigned char bin_25_com[] = { 0xB8, 0x14, 0x11, 0x30, 0xDB, 0xCD, 0x10, 0xC3 }; 00005 00006 struct BuiltinFileBlob bfb_25_COM = { 00007 /*recommended file name*/ "25.COM", 00008 /*data*/ bin_25_com, 00009 /*length*/ sizeof(bin_25_com) 00010 }; 00011 00012 static const unsigned char bin_25_com_ega[] = { 0xB8, 0x11, 0x11, 0x30, 0xDB, 0xCD, 0x10, 0xC3 }; 00013 00014 struct BuiltinFileBlob bfb_25_COM_ega = { 00015 /*recommended file name*/ "25.COM", 00016 /*data*/ bin_25_com_ega, 00017 /*length*/ sizeof(bin_25_com_ega) 00018 }; 00019 00020 static const unsigned char bin_25_com_other[] = { 0xB8, 0x03, 0x00, 0xCD, 0x10, 0xC3 }; 00021 00022 struct BuiltinFileBlob bfb_25_COM_other = { 00023 /*recommended file name*/ "25.COM", 00024 /*data*/ bin_25_com_other, 00025 /*length*/ sizeof(bin_25_com_other) 00026 }; 00027