private void ParseROMFile()
        {
            SSROMInfo ssRomInfo             = new SSROMInfo(_path);
            string    compatibleAreaSymbols = ssRomInfo.GetCompatibleAreaSymbol();
            string    compatiblePeripherals = ssRomInfo.GetCompatiblePeripheral();

            textBoxHardwareIdentifier.Text   = ssRomInfo.GetHardwareIdentifier();
            textBoxMakerId.Text              = ssRomInfo.GetMakerId();
            textBoxProductNumber.Text        = ssRomInfo.GetProductNumber();
            textBoxVersion.Text              = ssRomInfo.GetVersion();
            textBoxReleaseDate.Text          = ssRomInfo.GetReleaseDate();
            textBoxDeviceInformation.Text    = ssRomInfo.GetDeviceInformation();
            textBoxCompatibleAreaSymbol.Text = compatibleAreaSymbols;
            textBoxCompatiblePeripheral.Text = compatiblePeripherals;
            textBoxGameTitle.Text            = ssRomInfo.GetGameTitle();
            textBoxIpSize.Text           = ssRomInfo.GetIpSize();
            textBoxStackM.Text           = ssRomInfo.GetStackM();
            textBoxStackS.Text           = ssRomInfo.GetStackS();
            textBoxFirstReadAddress.Text = ssRomInfo.GetFirstReadAddress();
            textBoxFirstReadSize.Text    = ssRomInfo.GetFirstReadSize();

            SetCompatibleAreaSymbolsCheckboxes(compatibleAreaSymbols);
            SetCompatiblePeripheralsCheckBoxes(compatiblePeripherals);
        }