mk64-dc

(★ 65)

Sega Dreamcast port of Mario Kart 64 decompilation

File Explorer

  • .clang-format
  • .clang-tidy
  • .editorconfig
  • .gitattributes
  • .gitignore
  • .gitmodules
  • addr_to_sym.py
  • assets.json
  • cleanup.sh
  • config.yml
  • diff
  • diff_settings.py
  • Doxyfile
  • doxygen-awesome-css
  • environ.sh
  • extract_assets.py
  • first-diff.py
  • generate_dc_data.sh
  • ghost.ico
  • import
  • ip.txt
  • kart.ico
  • loader.c
  • m2c_helper.sh
  • Makefile
  • Makefile.split
  • memcpy32.S
  • mk64.eu.v10.sha1
  • mk64.eu.v11.sha1
  • mk64.us.sha1
  • nintendo_192.h
  • permute
  • permuter_settings.toml
  • progress.py
  • python_convert.py
  • README.md
  • README.orig
  • rename_sym.sh
  • safe_gcc.mk
  • safe_gcc_old.mk
  • test_blend.bat
  • undefined_syms.txt
  • util.mk

# 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.

🔍

brew

View Details ▼

Homebrew - a package manager for macOS and Linux.
Some subcommands such as `install` have their own usage documentation.

brew install {{formula|cask}}

Install the latest stable version of a formula or cask:

brew list

List all installed formulae and casks:

brew upgrade {{formula|cask}}

Upgrade an installed formula or cask (if none is given, all installed formulae/casks are upgraded):

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

git submodule

View Details ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

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`:

🔍

gmake

View Details ▼

This command is an alias of GNU `make`.

tldr make

View documentation for the original command:

// repository documentation