- http://eab.abime.net/showpost.php?p=831346&postcount=14 (PFS3 Short Install Guide)
- https://forum.amiga.org/index.php?topic=67443.0 (How to Partition and Format 16GB CF cards or larger.)
- https://www.youtube.com/watch?reload=9&v=iqUiNARd-bg (Tutorial - Large Disk Support for Amiga OS (Workbench))
| Name | Creator | Description | Status | Price | Home page |
|---|---|---|---|---|---|
| ReAmiga 1200 | John Hertell | Amiga 1200 motherboard | Available | http://wordpress.hertell.nu/?p=587 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| template<class T, class R, class... Args> | |
| struct mem_fn_wrap { | |
| R (T::* pm)(Args...); | |
| T& t; | |
| mem_fn_wrap(R (T::* pm)(Args...), T& t) : pm(pm), t(t) {} | |
| R operator()(Args&&... args) { | |
| return (t.*pm)(std::forward<Args>(args)...); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <functional> | |
| #include <string> | |
| #include <tuple> | |
| #include <array> | |
| struct Thread { | |
| struct InternalBase { | |
| virtual void call() = 0; | |
| }; |
- Get DJGPP working (DONE)
- DOS Networking
- Create lwIP linux test app (DONE)
- Get Dosbox-x networking running (DONE)
- Port lwIP to MS-DOS.
- http://www.diva-portal.org/smash/get/diva2:23244/fulltext01.pdf (Direct Digital Pulse Width Modulation for Class D Amplifiers)