it('is true when a pvm header is found', (): void => {
    expect(
      isRiscV(new Uint8Array([0x50, 0x56, 0x4d, 0x00, 0xff, 0x00, 0x42, 0x23]))
    ).toEqual(true);
  });