From 942ed209a8d2257a647a6fac4b54a33262a38ce9 Mon Sep 17 00:00:00 2001 From: jakegoodwin Date: Sun, 2 Apr 2023 18:25:08 -0700 Subject: [PATCH] updated the readme with instructions --- README.md | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8e05d9..d9f3403 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,26 @@ # AVR_ASM -Some example code for interacting with a Atmegr328P using assembly and the avra assembler program. - +Some example code for interacting with a Atmegr328P using assembly and the +avra assembler program. + +This program just runs a simple led chaser dependant on the value stored +at a sram address. + + +## How to run: + +**requirements:** +- avra assembler +- the avr inc files or change the makefile to target the included one. +- an avrasp programmer. +- gnu make +- bash + + +```sh +git clone +cd +make all +make flash +``` +