[SC64] v2.20.0 release

This commit is contained in:
Mateusz Faderewski 2024-09-29 21:14:55 +02:00
parent db4f16754f
commit ed63eb3e8c
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
#define VERSION_MAJOR (2)
#define VERSION_MINOR (19)
#define VERSION_MINOR (20)
#define VERSION_REVISION (0)

View File

@ -1293,7 +1293,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "sc64deployer"
version = "2.19.0"
version = "2.20.0"
dependencies = [
"bindgen",
"cc",

View File

@ -1,6 +1,6 @@
[package]
name = "sc64deployer"
version = "2.19.0"
version = "2.20.0"
edition = "2021"
authors = ["Polprzewodnikowy"]
description = "SummerCart64 loader and control software"

View File

@ -70,7 +70,7 @@ pub struct DeviceState {
const SC64_V2_IDENTIFIER: &[u8; 4] = b"SCv2";
const SUPPORTED_MAJOR_VERSION: u16 = 2;
const SUPPORTED_MINOR_VERSION: u16 = 19;
const SUPPORTED_MINOR_VERSION: u16 = 20;
const SDRAM_ADDRESS: u32 = 0x0000_0000;
const SDRAM_LENGTH: usize = 64 * 1024 * 1024;