Avr8bit-emulator
An emulator for the Atmel AVR 8-bit microcontroller
Loading...
Searching...
No Matches
main.c
Go to the documentation of this file.
1#include <stdint.h>
2#include <stdbool.h>
3#include <stdio.h>
4#include "core.h"
5#include "arithm_logic.h"
6
7void read_program(FILE file, const char *filename) {
8 FILE *file = fopen(filename, "rb");
9};
10
11int main() {
12
13}
Arithmetic and logic operations.
void read_program(FILE file, const char *filename)
Definition main.c:7
int main()
Definition main.c:11