package embox.cmd.dma


@AutoCmd
@Cmd(name = "dma",
	help = "test dma tasks, output available DMA channels",
	man = '''
		NAME
			dma - test dma task(s)
		SYNOPSIS
			dma [-hpsvi]
		DESCRIPTION
			
		OPTIONS
			-h 
				displays help
			-0
				memory copy test

			(without options executes default)
		AUTHOR
			kpishere
	''')
module dma {
	source "dma.c"

	depends embox.arch.mmu
	depends embox.driver.dma.dma_api
}
