Changeset 41509 in vbox for trunk/src/VBox/Devices/PC/BIOS-new
- Timestamp:
- May 30, 2012 8:05:12 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS-new/MakeDebianBiosAssembly.cpp
r41508 r41509 1035 1035 static RTEXITCODE ParseSymFile(const char *pszBiosSym) 1036 1036 { 1037 #if 1 1037 1038 /** @todo use RTDbg* later. (Just checking for existance currently.) */ 1038 1039 PRTSTREAM hStrm; … … 1041 1042 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error opening '%s': %Rrc", pszBiosSym, rc); 1042 1043 RTStrmClose(hStrm); 1044 #else 1045 RTDBGMOD hDbgMod; 1046 int rc = RTDbgModCreateFromImage(&hDbgMod, pszBiosSym, "VBoxBios", 0 /*fFlags*/); 1047 RTMsgInfo("RTDbgModCreateFromImage -> %Rrc\n", rc); 1048 #endif 1043 1049 return RTEXITCODE_SUCCESS; 1044 1050 }
Note:
See TracChangeset
for help on using the changeset viewer.