about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-15 21:46:53 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-03-15 21:46:53 -0700
commit7119d79b8a9a4023414f7664a011e40fafb44dfd (patch)
tree23bf14e1498c6c833f7e68b4272ffb01ec638bee /tools
parentfd224d83f511c8cb0e8a70393d6f1c47dd88d1f1 (diff)
downloadmu-7119d79b8a9a4023414f7664a011e40fafb44dfd.tar.gz
snapshot: write to disk using BIOS
Requires the following commands:
  dd if=/dev/zero of=data.img count=20160
  ./translate life.mu
  qemu-system-i386 -hda disk.img -hdb data.img

Before running Qemu, data.img will contain all 0s.
After quitting Qemu, data.img will contain the first 512 bytes of disk.img.
Diffstat (limited to 'tools')
0 files changed, 0 insertions, 0 deletions
21 ^
62cd83ba ^



b3556b21 ^
62cd83ba ^






f07bb12f ^






c9383c72 ^











f07bb12f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45