MCP server for AI-assisted debugging of DOS binaries via GDB protocol. Features: - GDB remote protocol client for DOSBox-X debugging - 16 debugging tools: launch, attach, breakpoint management, registers, memory read/write, disassemble, step, continue, etc. - Docker container with DOSBox-X for consistent environment - Support for DOS segment:offset addressing - Comprehensive test suite (49 tests) Primary use case: Reverse engineering the unpublished Bezier algorithm in RIPTERM.EXE for the RIPscrip graphics protocol project.
73 lines
693 B
Plaintext
73 lines
693 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# uv
|
|
.uv/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Linting
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Local config
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# DOS files (user-specific)
|
|
dos/
|
|
config/dosbox.conf
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# Temp files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
|
|
# Screenshots and artifacts
|
|
screenshots/
|
|
*.png
|
|
*.bmp
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Ignore compiled DOSBox-X builds
|
|
dosbox-x-build/
|