realjump 0.2.0

Tiny crate that loads and boots Real Mode code from an x86-64 kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let
  lock = builtins.fromJSON (builtins.readFile ./flake.lock);

  flake-compat = builtins.fetchTarball {
    url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
    sha256 = lock.nodes.flake-compat.locked.narHash;
  };

  flake = import flake-compat {
    src = ./.;
  };

  shell = flake.shellNix.default // {
    reproduce = flake.defaultNix.outputs.reproduce.${builtins.currentSystem};
  };
in shell