Arduino-USB-HID-RetroJoysti.../C64_4joy_adapter
Jarno Lehtinen 7c66418b39
Update README.md
2019-05-08 09:04:08 +03:00
..
4joy_adapter.ino Update 4joy_adapter.ino 2018-12-08 10:46:49 +02:00
4joy_adapter_old.ino Rename 4joy_adapter.ino to 4joy_adapter_old.ino 2018-12-07 17:19:04 +02:00
README.md Update README.md 2019-05-08 09:04:08 +03:00
interrupt_test.ino Create interrupt_test.ino 2018-12-06 14:28:09 +02:00
stuff.ino Create stuff.ino 2018-12-19 14:30:27 +02:00
temp.ino Update temp.ino 2018-12-07 14:41:02 +02:00

README.md

& 'C:\Program Files (x86)\Arduino\hardware\tools\avr\bin\avr-objdump.exe' -S "C:\\Users\\Lehtinen\\AppData\\Local\\Temp\\arduino_build_119176/test.ino.elf" > c:\temp\koe.txt
 cli // 1 clock
 PORTB = *ptr; // is this atomic? probably, because ptr is 6-bit pointer. nope...
 f98:	e0 91 26 01 	lds	r30, 0x0126	; 0x800126 <__data_end> // 2 clocks
 f9c:	f0 91 27 01 	lds	r31, 0x0127	; 0x800127 <__data_end+0x1> // 2 clocks
 fa0:	80 81       	ld	r24, Z // 1 clock
 fa2:	85 b9       	out	0x05, r24	; 5 // 1 clock
 sei // 1 clock

500ns

cli
mov r31, r1
mov r30, gpior0
ld	r24, Z
out	0x05, r24
sei

375ns

register as variable

running code from ram

  • https://forum.arduino.cc/index.php?topic=425962.0
  • https://forum.arduino.cc/index.php?topic=470631.0
  • "AVRs are Harvard architecture CPUs, so they CANNOT run code out of RAM, so that directive can't possibly do anything of any value whatsoever."
  • "Yes, Harvard IS the reason. A Harvard CPU, by definition, has separate code and data memory spaces. They execute code from one memory, and fetch data from a different memory. What you're seeing is most likely the compiler pretending the directive can do what you want, but the linker doing the only thing it can do - putting that code in FLASH."