├── .gitattributes ├── DDMA.vcxproj ├── DDMA.vcxproj.filters ├── DDMA.vcxproj.user ├── README.md ├── include ├── ddma.h └── macros.h └── src ├── ddma.cpp └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/.gitattributes -------------------------------------------------------------------------------- /DDMA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/DDMA.vcxproj -------------------------------------------------------------------------------- /DDMA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/DDMA.vcxproj.filters -------------------------------------------------------------------------------- /DDMA.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/DDMA.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/README.md -------------------------------------------------------------------------------- /include/ddma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/include/ddma.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/include/macros.h -------------------------------------------------------------------------------- /src/ddma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/src/ddma.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutecatsandvirtualmachines/DDMA/HEAD/src/main.cpp --------------------------------------------------------------------------------