23 lines
335 B
C
23 lines
335 B
C
/*
|
|
* main.c
|
|
*
|
|
*
|
|
* Created on: Feb 7, 2023
|
|
* Author: ovchinnikov_ii@RISDE.ru
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "alt_types.h"
|
|
#include "system.h"
|
|
#include "io.h"
|
|
|
|
#define IOWR_DELSIG_CTL(base, data) IOWR(base, 0, data)
|
|
|
|
int main() {
|
|
|
|
IOWR_DELSIG_CTL(SIGDEL_0_BASE, 0x2000);
|
|
printf("Ready\n");
|
|
while (1) {}
|
|
return 0;
|
|
}
|