https://github.com/dougmasten/crc32-6x09
CRC-32 Library for the Hitachi 6309 CPU
https://github.com/dougmasten/crc32-6x09
6309 assembly coco crc-32 tandy-color-computer
Last synced: 6 months ago
JSON representation
CRC-32 Library for the Hitachi 6309 CPU
- Host: GitHub
- URL: https://github.com/dougmasten/crc32-6x09
- Owner: dougmasten
- License: mit
- Created: 2020-03-24T00:02:57.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-26T08:52:46.000Z (over 4 years ago)
- Last Synced: 2025-04-10T01:13:37.717Z (6 months ago)
- Topics: 6309, assembly, coco, crc-32, tandy-color-computer
- Language: Assembly
- Size: 69.3 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
CRC32-6x09
==========## Description
An Hitachi 6309 library for calculating a CRC32 value.
## Example
```
crc_value rmb 4include crc32.asm
ldu #buffer
ldy #buffer_len
jsr crc32
stq crc_value
```## TODO
Implement Motorola 6809 version
## License
See [LICENSE.md](LICENSE.md)