Skip to content

Instantly share code, notes, and snippets.

@Ian-Marco-Moffett
Ian-Marco-Moffett / vector.h
Last active December 14, 2022 01:54
Single header vector lib.
#ifndef VECTOR_H_
#define VECTOR_H_
#include <stdint.h>
#include <stddef.h>
#include <stdlib.h>
#define VECTOR_INIT {0}
@Ian-Marco-Moffett
Ian-Marco-Moffett / qefi.asm
Created December 4, 2022 00:19
QEFI (Qnixx EFI library)
struc int8 {
. db ?
}
struc int16 {
align 2
. dw ?
}
struc int32 {
align 4
. dd ?