Changeset 589 in xtideuniversalbios for trunk/Serial_Server


Ignore:
Timestamp:
May 22, 2016, 12:26:57 PM (8 years ago)
Author:
krille_n_
Message:

Changes:

  • BIOS: Fixed a purely cosmetic bug from r542 where, in builds containing MODULE_EBIOS, the boot menu would display an incorrect drive size (0.4 kB with MODULE_STRINGS_COMPRESSED or 0.5 kB without) for old drives with no support for LBA.
  • Fixed a bug from r392 where Vision_DetectAndReturnIDinAXandPortInDXifControllerPresent would return the ID in AL instead of AH (if DANGEROUS_DETECTION had been defined).
  • Fixed a bug from r587 in AdvAtaInit.asm that would prevent detection of QDI Vision controllers.
  • Also changed how the QDI Vision IDs are defined (removed the need for shifting) to avoid confusion. This fixed a potential bug from r587 in AdvAtaInit.asm where some IDs were not being shifted.
  • Fixed a bug in PDC20x30.asm from r587 where GetPdcIDtoAX would not return with the IDE base port in DX so DisablePdcProgrammingMode would fail.
  • Made some changes to ModuleDependency.inc and other files so that MODULE_ADVANCED_ATA now requires USE_386. Consequently it is no longer included in the regular AT-builds, only in the 386_8k-build.
  • Moved the UNROLL_SECTORS_IN_CX_TO_xWORDS macros from IDE_8bit.inc to IdeIO.inc which means it's now possible to build a BIOS without MODULE_8BIT_IDE.
  • XTIDECFG: Added a minimum DOS version check (since it needs DOS version 2+) to allow the program to quit gracefully in the unlikely scenario where someone tries to run it under DOS version 1.
  • Made some changes to Drive.asm to improve drive enumeration. The old method using GET_DOS_DRIVE_PARAMETER_BLOCK_FOR_SPECIFIC_DRIVE worked well in Windows XP but not in Windows 98 SE (in Windows or in DOS mode). The two problems were; 1) The function call would access the drives which on single floppy drive systems would cause Windows to swap between A: and B: (throwing a blue screen asking the user to insert a disk etc). 2) Only floppy drives and FAT16 drives would be available in the list of drives, no FAT32/optical/network drives.
  • Improved code in IdeControllerMenu.asm so that the default port addresses for all IDE interfaces are now restored when (re-)selecting the (same) type of IDE device.
  • Also made it impossible to select a device type unless the required module is included in the loaded BIOS.
  • The version check done when loading a BIOS now uses the FLASH_SIGNATURE definition from Version.inc. Any changes affecting RomVars now only requires updating that definition. This means that changes to RomVars must be implemented in both the BIOS and XTIDECFG before being committed to the repository.
  • Added a compatibility fix for 3Com 3C503 cards to the ROM checksumming code in Buffers.asm (Buffers_GenerateChecksum).
  • SerDrive: Made some minor changes to file names and paths to improve compatibility with case sensitive environments.
  • BIOSDRVS: Made a minor size optimization which as a side effect also makes it compatible with all DOS versions including DOS version 1.
  • Library: Renamed the WAIT_RETRACE_IF_NECESSARY_THEN macro to CALL_WAIT_FOR_RETRACE_IF_NECESSARY_THEN and made a tail-call-optimized version of it (JMP_WAIT_FOR_RETRACE_IF_NECESSARY_THEN).
  • A speed optimization to the eRCL_IM macro for 386 and higher. This change breaks emulation in the sense that the macro will fail when given a memory operand as the first parameter.
  • Other minor optimizations and fixes.
Location:
trunk/Serial_Server
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/Serial_Server/library/Checksum.cpp

    r526 r589  
    33// Project:     XTIDE Universal BIOS, Serial Port Server
    44//
    5 // File:        checksum.cpp - Checksum function and test routines
     5// File:        Checksum.cpp - Checksum function and test routines
    66
    77//
     
    3939//
    4040
    41 #include "library.h"
     41#include "Library.h"
    4242
    4343unsigned short checksum( unsigned short *wbuff, int wlen )
  • trunk/Serial_Server/library/File.h

    r526 r589  
    33// Project:     XTIDE Universal BIOS, Serial Port Server
    44//
    5 // File:        file.h - File access via standard "stdio.h" routines
     5// File:        File.h - File access via standard "stdio.h" routines
    66//
    77// Routines for accessing the file system using generic routines, which
  • trunk/Serial_Server/library/FlatImage.h

    r526 r589  
    2222//
    2323
    24 #include "library.h"
     24#include "Library.h"
    2525
    2626class FlatImage : public Image
  • trunk/Serial_Server/library/Image.cpp

    r526 r589  
    33// Project:     XTIDE Universal BIOS, Serial Port Server
    44//
    5 // File:        image.cpp - Abstract base class for disk image support
     5// File:        Image.cpp - Abstract base class for disk image support
    66//
    77
     
    2222//
    2323
    24 #include "library.h"
     24#include "Library.h"
    2525#include <memory.h>
    2626#include <stdlib.h>
  • trunk/Serial_Server/library/Library.h

    r526 r589  
    33// Project:     XTIDE Universal BIOS, Serial Port Server
    44//
    5 // File:        library.h - Include file for users of the library
     5// File:        Library.h - Include file for users of the library
    66//
    77
     
    8787
    8888#ifdef WIN32
    89 #include "../win32/win32serial.h"
     89#include "../win32/Win32Serial.h"
    9090#else
    9191// there is no standard way to read/write and configure the serial port, OS specific only
     
    9393
    9494#ifdef WIN32
    95 #include "../win32/win32file.h"
     95#include "../win32/Win32File.h"
    9696#else
    97 #include "file.h"
     97#include "File.h"
    9898#endif
    9999
  • trunk/Serial_Server/library/Process.cpp

    r526 r589  
    33// Project:     XTIDE Universal BIOS, Serial Port Server
    44//
    5 // File:        process.cpp - Processes commands received over the serial port
     5// File:        Process.cpp - Processes commands received over the serial port
    66//
    77
     
    2222//
    2323
    24 #include "library.h"
     24#include "Library.h"
    2525#include <memory.h>
    2626#include <string.h>
  • trunk/Serial_Server/library/Serial.cpp

    r526 r589  
    2222//
    2323
    24 #include "library.h"
     24#include "Library.h"
    2525#include <stdlib.h>
    2626#include <string.h>
  • trunk/Serial_Server/makefile

    r344 r589  
    1111#
    1212
    13 HEADERS = library/library.h win32/win32file.h win32/win32serial.h library/file.h library/flatimage.h
     13HEADERS = library/Library.h win32/Win32File.h win32/Win32Serial.h library/File.h library/FlatImage.h
    1414
    1515CXX = cl
     
    2121    @$(CXX) /Febuild/serdrive.exe $(WIN32OBJS)
    2222
    23 build/win32.obj:    win32/win32.cpp $(HEADERS)
    24     @$(CXX) /c $(CXXFLAGS) win32/win32.cpp /Fobuild/win32.obj
     23build/win32.obj:    win32/Win32.cpp $(HEADERS)
     24    @$(CXX) /c $(CXXFLAGS) win32/Win32.cpp /Fobuild/win32.obj
    2525
    26 build/checksum.obj: library/checksum.cpp $(HEADERS)
    27     @$(CXX) /c $(CXXFLAGS) library/checksum.cpp /Fobuild/checksum.obj
     26build/checksum.obj: library/Checksum.cpp $(HEADERS)
     27    @$(CXX) /c $(CXXFLAGS) library/Checksum.cpp /Fobuild/checksum.obj
    2828
    29 build/serial.obj:   library/serial.cpp $(HEADERS)
    30     @$(CXX) /c $(CXXFLAGS) library/serial.cpp /Fobuild/serial.obj
     29build/serial.obj:   library/Serial.cpp $(HEADERS)
     30    @$(CXX) /c $(CXXFLAGS) library/Serial.cpp /Fobuild/serial.obj
    3131
    32 build/process.obj:  library/process.cpp $(HEADERS)
    33     @$(CXX) /c $(CXXFLAGS) library/process.cpp /Fobuild/process.obj
     32build/process.obj:  library/Process.cpp $(HEADERS)
     33    @$(CXX) /c $(CXXFLAGS) library/Process.cpp /Fobuild/process.obj
    3434
    35 build/image.obj:    library/image.cpp $(HEADERS)
    36     @$(CXX) /c $(CXXFLAGS) library/image.cpp /Fobuild/image.obj
     35build/image.obj:    library/Image.cpp $(HEADERS)
     36    @$(CXX) /c $(CXXFLAGS) library/Image.cpp /Fobuild/image.obj
    3737
    3838
     
    4646
    4747
    48 build/checksum_test.exe:    library/checksum.cpp
    49     @$(CXX) /Febuild/checksum_test.exe /Ox library/checksum.cpp /Fobuild/checksum_test.obj -D CHECKSUM_TEST
     48build/checksum_test.exe:    library/Checksum.cpp
     49    @$(CXX) /Febuild/checksum_test.exe /Ox library/Checksum.cpp /Fobuild/checksum_test.obj -D CHECKSUM_TEST
    5050
  • trunk/Serial_Server/win32/Win32.cpp

    r526 r589  
    3030#include <stdarg.h>
    3131
    32 #include "../library/library.h"
    33 #include "../library/flatimage.h"
    34 
    35 #include "../../XTIDE_Universal_BIOS/inc/version.inc"
     32#include "../library/Library.h"
     33#include "../library/FlatImage.h"
     34
     35#include "../../XTIDE_Universal_BIOS/Inc/Version.inc"
    3636
    3737char *bannerStrings[] = {
  • trunk/Serial_Server/win32/Win32File.h

    r526 r589  
    2929#include <windows.h>
    3030#include <stdio.h>
    31 #include "../library/library.h"
     31#include "../library/Library.h"
    3232
    3333class FileAccess
  • trunk/Serial_Server/win32/Win32Serial.h

    r568 r589  
    2424#include <stdio.h>
    2525#include "windows.h"
    26 #include "../library/library.h"
     26#include "../library/Library.h"
    2727
    2828#define PIPENAME "\\\\.\\pipe\\xtide"
Note: See TracChangeset for help on using the changeset viewer.