Skip to content

Instantly share code, notes, and snippets.

View TempleProgramming's full-sized avatar

TempleProgramming

View GitHub Profile
@TempleProgramming
TempleProgramming / LoadFont.CC
Last active July 29, 2021 06:40
ZealOS BMP Font Sheet Importer
// Tom please free the CBGR24 class name
class CBGR
{
U8 b;
U8 g;
U8 r;
};
class CBMP
@TempleProgramming
TempleProgramming / SHA256.CC
Last active July 26, 2021 14:00
ZenithOS SHA-256 Generation
/* This implementation of SHA-256 was adapted from Brad Conte's
crypto-algorithms GitHub repository. */
#define SHA256_BLOCK_SIZE 32
class CSHA256_CTX
{
U8 data[64];
U32 datalen;
U64 bitlen;