Deprecated asm! macro
This commit is contained in:
parent
39ad683665
commit
c711f22e63
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "vga"
|
name = "vga"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
|
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Support for vga specific functions, data structures, and registers."
|
description = "Support for vga specific functions, data structures, and registers."
|
||||||
|
@ -23,7 +23,7 @@ bitflags = "1.2.1"
|
||||||
conquer-once = { version = "0.2.0", default-features = false }
|
conquer-once = { version = "0.2.0", default-features = false }
|
||||||
font8x8 = { version = "0.2.5", default-features = false, features = ["unicode"] }
|
font8x8 = { version = "0.2.5", default-features = false, features = ["unicode"] }
|
||||||
spinning_top = { version = "0.1.0", features = ["nightly"] }
|
spinning_top = { version = "0.1.0", features = ["nightly"] }
|
||||||
x86_64 = "0.9.6"
|
x86_64 = "0.11.0"
|
||||||
|
|
||||||
[dependencies.num-traits]
|
[dependencies.num-traits]
|
||||||
version = "0.2.11"
|
version = "0.2.11"
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
# 0.2.4
|
||||||
|
|
||||||
|
- Updated `x86_64` to fix deprecated `asm!` macro.
|
||||||
|
|
||||||
# 0.2.3
|
# 0.2.3
|
||||||
|
|
||||||
- Added support for 320x240x256 mode via `Graphics320x240x256`.
|
- Added support for 320x240x256 mode via `Graphics320x240x256`.
|
||||||
|
|
|
@ -5,13 +5,13 @@ authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bootloader = { version = "0.9.0", features = ["map_physical_memory"] }
|
bootloader = { version = "0.9.3", features = ["map_physical_memory"] }
|
||||||
conquer-once = { version = "0.2.0", default-features = false }
|
conquer-once = { version = "0.2.0", default-features = false }
|
||||||
spinning_top = { version = "0.1.0", features = ["nightly"] }
|
spinning_top = { version = "0.1.0", features = ["nightly"] }
|
||||||
pic8259_simple = "0.1.1"
|
pic8259_simple = "0.1.1"
|
||||||
vga = { path = "../" }
|
vga = { path = "../" }
|
||||||
uart_16550 = "0.2.4"
|
uart_16550 = "0.2.4"
|
||||||
x86_64 = "0.9.6"
|
x86_64 = "0.11.0"
|
||||||
|
|
||||||
[package.metadata.bootimage]
|
[package.metadata.bootimage]
|
||||||
test-args = [
|
test-args = [
|
||||||
|
|
Loading…
Reference in a new issue