# avr-as -alcmns fuse_demo.s -o fuse_demo.o > fuse_demo.lst # avr-ld -T fuse_demo.ld -M -o fuse_demo.elf fuse_demo.o > fuse_demo.map .global lfuse, hfuse, efuse, lock, sig .section .allavrfuses,"a" lfuse: .byte 0x11 hfuse: .byte 0x22 efuse: .byte 0x33 .org 0x1000 ; Relative to the start of the section. lock: .byte 0x44 .org 0x2000 ; Relative to the start of the section. sig: .byte 0x55