beetle-psx-libretro

(★ 344)

Standalone port/fork of Mednafen PSX to the Libretro API.

File Explorer

  • .dir-locals.el
  • .gitignore
  • .gitlab-ci.yml
  • .travis.yml
  • appveyor.yml
  • beetle_psx_globals.h
  • COPYING
  • HD_TEXTURE_CACHE.md
  • input.c
  • input.h
  • libretro.c
  • libretro.osx.def
  • libretro_cbs.h
  • libretro_core_options.h
  • libretro_core_options_intl.h
  • libretro_options.h
  • link.T
  • Makefile
  • Makefile.common
  • osd_message.h
  • PAGE_ALIGN.md
  • README.md
  • TT_RELIABILITY_AUDIT.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.

🔍

size

View Details ▼

Display the sizes of sections inside binary files.

size {{path/to/file}}

Display the size of sections in a given object or executable file:

size {{[-o|--radix=8]}} {{path/to/file}}

Display the size of sections in a given object or executable file in [o]ctal:

size {{[-d|--radix=10]}} {{path/to/file}}

Display the size of sections in a given object or executable file in [d]ecimal:

🔍

strip

View Details ▼

Discard symbols from executables or object files.

strip {{path/to/file}}

Replace the input file with its stripped version:

strip {{path/to/input_file}} -o {{path/to/output_file}}

Strip symbols from a file, saving the output to a specific file:

strip {{[-d|--strip-debug]}} {{path/to/file.o}}

Strip debug symbols only:

🔍

md5

View Details ▼

Calculate MD5 cryptographic checksums.

md5 {{path/to/file}}

Calculate the MD5 checksum for a file:

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

Calculate MD5 checksums for multiple files:

md5 -q {{path/to/file}}

Output only the MD5 checksum (no filename):

// repository documentation