OpenCores
URL https://opencores.org/ocsvn/potato/potato/trunk

Subversion Repositories potato

[/] [potato/] [trunk/] [benchmarks/] [sha256/] [gpio.h] - Rev 13

Compare with Previous | Blame | View Log

// The Potato Processor Benchmark Applications
// (c) Kristian Klomsten Skordal 2015 <kristian.skordal@wafflemail.net>
// Report bugs and issues on <http://opencores.org/project,potato,bugtracker>
 
#ifndef GPIO_H
#define GPIO_H
 
#include <stdint.h>
 
#define DIRECTION_INPUT		0
#define DIRECTION_OUTPUT	1
 
void gpio_set_direction(volatile uint32_t * base, uint32_t direction);
void gpio_set_output(volatile uint32_t * base, uint32_t output);
uint32_t gpio_get_value(volatile uint32_t * base);
 
#endif
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.