doom64-dc

(★ 29)

Doom 64 port for Sega Dreamcast / KallistiOS

File Explorer

  • .gitignore
  • array_fast_copy.o
  • array_fast_copy.S
  • cover.png
  • environ.sh
  • ip.bin
  • Makefile
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

md5sum

View Details ▼

Calculate MD5 cryptographic checksums.

md5sum {{path/to/file1 path/to/file2 ...}}

Calculate the MD5 checksum for one or more files:

md5sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.md5}}

Calculate and save the list of MD5 checksums to a file:

{{command}} | md5sum

Calculate an MD5 checksum from `stdin`:

🔍

mkisofs

View Details ▼

Create ISO files from directories.
Also aliased as `genisoimage`.

mkisofs -o {{filename.iso}} {{path/to/source_directory}}

Create an ISO from a directory:

mkisofs -o {{filename.iso}} -V "{{label_name}}" {{path/to/source_directory}}

Set the disc label when creating an ISO:

mkisofs -o {{filename.iso}} -allow-limited-size {{path/to/source_directory}}

Create an ISO image with files larger than 2GiB by reporting a smaller apparent size for ISO9660 filesystems:

// repository documentation