floppy emu

This commit is contained in:
Sin Shimozono 2014-07-15 17:04:34 +09:00
parent 0a75616fb3
commit 3f0896dd15
3 changed files with 17 additions and 0 deletions

1
floppy-emu-source-1.0L-F11/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/Debug/

View File

@ -0,0 +1,8 @@
avrtarget/ClockFrequency=16000000
avrtarget/ExtRAMSize=0
avrtarget/ExtendedRAM=false
avrtarget/MCUType=atmega1284p
avrtarget/UseEEPROM=false
avrtarget/UseExtendedRAMforHeap=true
avrtarget/perConfig=false
eclipse.preferences.version=1

View File

@ -11,6 +11,14 @@
or from mailto:steve@bigmessowires.com.
*/
/*
* requires linker option:
* -Wl,-section-start=.bootldrinfo=0x1eff8
* post compilation task:
* avr-objcopy -O ihex -R .eeprom -R .fuse -R .lock -R .signature "${BuildArtifactFileBaseName}.elf" "${BuildArtifactFileBaseName}..hex"
*
*/
#include <math.h>
#include <avr/eeprom.h>
#include <avr/io.h>