33 lines
332 B
Markdown
33 lines
332 B
Markdown
# UEFI Conway's Game of Life
|
|
|
|
Conway's GOL in uefi-rs.
|
|
|
|
## Run in QEMU
|
|
|
|
Install the firmware files:
|
|
|
|
Nix:
|
|
|
|
```
|
|
nix build nixpkgs#OVMF
|
|
```
|
|
|
|
Debian/Ubuntu:
|
|
|
|
```
|
|
sudo apt-get install qemu ovmf
|
|
```
|
|
|
|
Fedora:
|
|
|
|
```
|
|
sudo dnf install qemu-kvm edk2-ovmf
|
|
```
|
|
|
|
Then copy the firmware files to the project directory.
|
|
|
|
Then run
|
|
|
|
```
|
|
./run.sh
|
|
```
|