mcdosbox-x/.gitignore
Ryan Malloy 170eba0843 Initial implementation of DOSBox-X MCP Server
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.
2026-01-27 13:07:51 -07:00

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/