Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/VTSTech/VTSPS2-CRC32

An example CRC32 implementation for the PS2
https://github.com/VTSTech/VTSPS2-CRC32

c crc32 ps2 ps2sdk

Last synced: about 1 month ago
JSON representation

An example CRC32 implementation for the PS2

Lists

README

        

# libcrc for PS2 v0.24 by VTSTech
An example CRC32 implementation for the PS2

# Usage:
# file_crc32(char device[], char path[], char fn[])

Expected param format

device "mc0:/"

path "APPS/"

fn "FILE.EXT"


strcpy(ldevice,"mc0:/");
strcpy(path,"APPS/");
strcpy(fn,"1MB.BIN");
scr_printf("%s \n",file_crc32(ldevice,path,fn));

# str_crc32(char str[])
Expected param format

str "any string"


strcpy(str,"a string");
scr_printf("CRC32: %s \n",str_crc32(str));

crc32.c written by Lammert Bies, (c) 1999-2016 Lammert Bies. File is licensed under the MIT License
https://github.com/lammertb/libcrc/blob/master/src/crc32.c

Compiled with PS2SDK
https://github.com/ps2dev/ps2sdk