Skip to content

Commit 7c23bf2

Browse files
authored
Fix address to zimmers.net to use https instead of http. (#173)
1 parent 3e852a9 commit 7c23bf2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libraries/Highbyte.DotNet6502.Systems.Commodore64/Config/C64SystemConfig.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ public void SetRenderTargetType(Type renderTargetType)
7878
// Note: Original download URL on commodore.ca no longer works, Cloudflare bot detection probably uses TLS fingerprinting and detects .NET httpclient as a bot.
7979
//public static string DEFAULT_KERNAL_ROM_DOWNLOAD_BASE_URL = "https://www.commodore.ca/manuals/funet/cbm/firmware/computers/c64/";
8080

81-
public static string DEFAULT_KERNAL_ROM_DOWNLOAD_BASE_URL = "http://www.zimmers.net/anonftp/pub/cbm/firmware/computers/c64";
81+
public static string DEFAULT_KERNAL_ROM_DOWNLOAD_BASE_URL = "https://www.zimmers.net/anonftp/pub/cbm/firmware/computers/c64";
8282
public static string DEFAULT_KERNAL_ROM_DOWNLOAD_URL = $"{DEFAULT_KERNAL_ROM_DOWNLOAD_BASE_URL}/kernal.901227-03.bin";
8383
public static string DEFAULT_BASIC_ROM_DOWNLOAD_URL = $"{DEFAULT_KERNAL_ROM_DOWNLOAD_BASE_URL}/basic.901226-01.bin";
8484
public static string DEFAULT_CHARGEN_ROM_DOWNLOAD_URL = $"{DEFAULT_KERNAL_ROM_DOWNLOAD_BASE_URL}/characters.901225-01.bin";
8585

8686
// TODO: Decide if ROM checksums should exist in C64SystemConfig, C64Config, or in C64
87-
// ROM version info from: http://www.zimmers.net/anonftp/pub/cbm/firmware/computers/c64/
87+
// ROM version info from: https://www.zimmers.net/anonftp/pub/cbm/firmware/computers/c64/
8888
// Checksums calculated with SHA1
8989
public const string KERNAL_ROM_NAME = "kernal";
9090
public static Dictionary<string, string> DefaultKernalROMChecksums = new()

0 commit comments

Comments
 (0)