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: 28 days ago
JSON representation
An example CRC32 implementation for the PS2
- Host: GitHub
- URL: https://github.com/VTSTech/VTSPS2-CRC32
- Owner: VTSTech
- License: mit
- Created: 2020-05-28T21:22:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-18T17:48:58.000Z (over 2 years ago)
- Last Synced: 2024-08-03T07:01:34.679Z (4 months ago)
- Topics: c, crc32, ps2, ps2sdk
- Language: C
- Homepage: https://www.vts-tech.org/homebrew
- Size: 1.15 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-ps2 - LIB CRC32
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 formatstr "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.cCompiled with PS2SDK
https://github.com/ps2dev/ps2sdk