Skip to content
View aarni57's full-sized avatar

Block or report aarni57

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. offalloc offalloc Public

    Forked from sebbbi/OffsetAllocator

    Fast O(1) offset allocator with minimal fragmentation in C99

    C 60 4

  2. comjam comjam Public

    itch.io DOS COM Jam September 2023

    C 2

  3. dostemplate dostemplate Public

    Simple DOS COM game template with timer and keyboard interrupts.

    C

  4. DOS Sound Blaster settings parsing DOS Sound Blaster settings parsing
    1
    static uint32_t read_uint_value(const char *iter, uint32_t base) {
    2
        assert(base == 16 || base == 10);
    3
        uint32_t v = 0;
    4
    
                  
    5
        while (*iter != '\0' && *iter != ' ') {
  5. trimark trimark Public

    C

  6. lrutrack lrutrack Public

    Least-recently-used tracking helper in C

    C