From 68d9e64f93e641a97540ac5c8469e1e7d3744a1a Mon Sep 17 00:00:00 2001 From: pjht Date: Fri, 11 Nov 2022 22:14:55 -0600 Subject: [PATCH] Update config to TOML --- config.toml | 14 ++++++++++++++ config.yaml | 8 -------- 2 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 config.toml delete mode 100644 config.yaml diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..bb6d480 --- /dev/null +++ b/config.toml @@ -0,0 +1,14 @@ +[[cards]] +type = "rom" +image = "rom.bin" + +[[cards]] +type = "term" + +[[cards]] +type = "ram" +size = 65536 + +[[cards]] +type = "storage" +image = "os.dsk" diff --git a/config.yaml b/config.yaml deleted file mode 100644 index feb809a..0000000 --- a/config.yaml +++ /dev/null @@ -1,8 +0,0 @@ ---- -cards: - - type: rom - image: rom.bin - - type: ram - size: 65536 - - type: storage - disk: os.dsk