beetle-psx-libretro

(★ 344)

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

파일 탐색기

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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

size

설명 보기 ▼

바이너리 파일 내부 섹션의 크기를 표시합니다.
더 많은 정보: <https://sourceware.org/binutils/docs/binutils/size.html>.

size {{path/to/file}}

주어진 오브젝트 또는 실행 파일의 섹션 크기 표시:

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

주어진 오브젝트 또는 실행 파일의 섹션 크기를 [o]팔진수로 표시:

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

주어진 오브젝트 또는 실행 파일의 섹션 크기를 [d]십진수로 표시:

🔍

strip

설명 보기 ▼

실행 파일이나 객체 파일에서 심볼을 제거합니다.
더 많은 정보: <https://manned.org/strip>.

strip {{path/to/file}}

입력 파일을 심볼이 제거된 버전으로 대체:

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

파일에서 심볼을 제거하고, 출력을 특정 파일에 저장:

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

디버그 심볼만 제거:

🔍

md5

설명 보기 ▼

MD5 암호화 체크섬을 계산합니다.
더 많은 정보: <https://keith.github.io/xcode-man-pages/md5.1.html>.

md5 {{path/to/file}}

파일의 MD5 체크섬 계산:

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

여러 파일의 MD5 체크섬 계산:

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

파일명 없이 MD5 체크섬만 출력:

// repository documentation