- http://www.brackeen.com/vga/index.html
 - https://wiki.osdev.org/Drawing_In_Protected_Mode
 - http://www.brokenthorn.com/Resources/OSDevVid2.html
 - http://collaboration.cmc.ec.gc.ca/science/rpn/biblio/ddj/Website/articles/CUJ/1990/9010/olhoeft/olhoeft.htm
- Duncan, Ray, ed., 1990, Extending DOS, Reading, MA, Addison-Wesley, 432p.
 - Ericson, Bo, 1990, "VESA VGA BIOS Extensions," Dr. Dobb's Journal, v.14, n.4, p.65-70.
 
 - http://collaboration.cmc.ec.gc.ca/science/rpn/biblio/ddj/Website/articles/DDJ/1990/9004/9004f/9004f.htm
 
  
    
      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> | |
| template <class T> | |
| T parseHelper(const std::string& str) { return T(5); } | |
| template<class... Args, size_t... I> | |
| void parse2(std::tuple<Args...>& tuple, const std::array<std::string, sizeof...(Args)>& data, std::index_sequence<I...>) { | 
- http://www.diva-portal.org/smash/get/diva2:23244/fulltext01.pdf (Direct Digital Pulse Width Modulation for Class D Amplifiers)
 
- Get DJGPP working (DONE)
 - DOS Networking
- Create lwIP linux test app (DONE)
 - Get Dosbox-x networking running (DONE)
 - Port lwIP to MS-DOS.
 
 
  
    
      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; | |
| }; | 
OlderNewer