Skip to the content.

Credits and third-party licenses

This manual stands on the shoulders of giants. So does the binary it documents.

Documentation sources

Substantial portions of this manual — language summary, builtin function signatures, standard-library module surfaces — are adapted from the official documentation of the following projects:

Material original to this manual — DOS-specific quirks, the networking-internals page, the troubleshooting guide, this credits page — is © 2026 Aaron Wohl and the freedos_micro_python contributors, MIT-licensed alongside the rest of the project.

Software bundled in MP.EXE

The binary you run is the integration of several upstream projects compiled together. The authoritative catalog — versions, licenses, modifications, source URLs — is in docs/THIRD_PARTY.md in the source tree. Summary:

Component License What it does
MicroPython MIT Python interpreter + standard library
axtls BSD-3-Clause TLS (ssl) + hashes / AES used by _ssh
libssh2 BSD-3-Clause SSH/SCP/SFTP client protocol
TweetNaCl Public Domain Curve25519 KEX + Ed25519 host-key verify
lwIP BSD-3-Clause TCP/IP stack
crypto-algorithms Public Domain SHA-256 (kept for hashlib’s API)
PMODE/W Free for use 32-bit DOS extender (stub baked into the .exe)
uc386 MIT C23 compiler that built it all

Plus the port’s own glue — src/freedos_micro_python/port/*.c and the build/CLI scripts — under MIT.

A debt to FreeDOS

Targeting FreeDOS would have been impossible without the FreeDOS source tree to read when debugging PMODE/W’s INT 21h reflection, the DOS packet-driver interface, the FAT write path, and a handful of NLS / RTC quirks. The release/ directory in the repository ships a copy of the FreeDOS sources we leaned on; see the project README for the full statement.

FreeDOS is GPLv2-licensed and the work of many contributors over many years. We use it as a target, not modify it.

Test fixtures

The bundled SSH / TLS rigs use:

None of these are included in the .exe; they’re host-side test dependencies.

Thank you

Open-source software has always been a debt-to-strangers economy. This manual, and the port it documents, exists because of the work of every contributor to every project above. If you find a bug here, file it at https://github.com/avwohl/freedos_micro_python/issues; if you improve it, we’d love the PR.