[SC64] v2.18.0 release

This commit is contained in:
Mateusz Faderewski 2023-12-14 20:52:34 +01:00
parent bf13434f40
commit 6c1446c9df
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
#define VERSION_MAJOR (2)
#define VERSION_MINOR (17)
#define VERSION_MINOR (18)
#define VERSION_REVISION (0)

View File

@ -1013,7 +1013,7 @@ dependencies = [
[[package]]
name = "sc64deployer"
version = "2.17.0"
version = "2.18.0"
dependencies = [
"chrono",
"clap",

View File

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

View File

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