Skip to content

Commit 3bf65cf

Browse files
committed
Added LICENSE notifications
commit 20a4bef7fe2733bdd79967191fdf204cb93e9106 Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:51:18 2019 +0100 [usb/eth] add license to Z3 config source files commit 45a79a5959f6ce2b5f224f37f03e3a99800cb794 Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:50:43 2019 +0100 [rtc] add license to source files commit 0af4855851afe6dc8c1311d3a9af7b58e97cbc5b Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:50:05 2019 +0100 [i2c] add license to oled source files commit c202d3d346f9a07d6bee5b688b34dee0cc4514b4 Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:44:25 2019 +0100 [bootrom] add license to source files commit 086648922e02658d93dd5460ef7acbe11b56277a Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:44:15 2019 +0100 [addmem] add license to source files commit 258c77514221dda931d783ee073442a8cfac72b8 Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:43:59 2019 +0100 [sdcard] add license to source files commit 87a7ece43cf4af549e166842e1c04968881c44dd Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:43:45 2019 +0100 [eth] add license to source files commit 399d1b40036f92754faa72b88c719724b7b41a87 Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 22:43:34 2019 +0100 [xaudio] add license to source files commit 06b5aa8ee7c020ae55193cba021f698ec501e654 Author: Erik Hemming <eriquesnk@gmail.com> Date: Mon Oct 28 21:22:45 2019 +0100 [rtg] add license to source files
1 parent a847232 commit 3bf65cf

21 files changed

+277
-1
lines changed

addmem/addmem.asm

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; AddReplayMem - Memory configuration tool for the REPLAY Amiga core
8+
; Copyright (C) FPGAArcade community
9+
;
10+
; Contributors : Mike Johnson, Jim Drew, Erik Hemming
11+
;
12+
; This software is licensed under LPGLv2.1 ; see LICENSE file
13+
;
14+
;
15+
116
; vasmm68k_mot -Fhunkexe -kick1hunks addmem.asm -L addmem.list -nosym -m68000 -o AddReplayMem -I ~/Documents/amiga-root/SYS/Code/NDK_3.9/Include/include_i
217

318
include exec/nodes.i

bootrom/bootrom.s

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; db060 bootrom - CPU/FPU startup config for the REPLAY 68060 daughterboard
8+
; Copyright (C) Erik Hemming
9+
;
10+
; This software is licensed under LPGLv2.1 ; see LICENSE file
11+
;
12+
;
13+
114
; ./vasmm68k_mot -showcrit -pic -Fbin -m68000 bootrom/bootrom.s -o bootrom/bootrom.bin
215

316
ROM_MODE = 1

eth/enc624.i

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; repleyeth.device - SANAII device driver for the REPLAY 68060 daughterboard
8+
; Copyright (C) Erik Hemming
9+
;
10+
; This software is licensed under LPGLv2.1 ; see LICENSE file
11+
;
12+
;
13+
114
; The USB/Ethernet Z3 'card' is located at $4000.0000 (base address).
215
; The ENC624 address space starts at $4030.0000 and is repeated in 64kB chunks
316
;

eth/kprintf.i

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; repleyeth.device - SANAII device driver for the REPLAY 68060 daughterboard
8+
; Copyright (C) Erik Hemming
9+
;
10+
; This software is licensed under LPGLv2.1 ; see LICENSE file
11+
;
12+
;
13+
114
kprintf MACRO
215
IFD ENABLE_KPRINTF
316
; cmp.l #$baadc0de,0.l ; kludge to dynamically enable/disable printf's

eth/replayeth.s

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; repleyeth.device - SANAII device driver for the REPLAY 68060 daughterboard
8+
; Copyright (C) Erik Hemming
9+
;
10+
; This software is licensed under LPGLv2.1 ; see LICENSE file
11+
;
12+
;
13+
114
; ./vasmm68k_mot -m68020 -Fhunkexe -kick1hunks -nosym -showcrit replayeth.s -o replayeth.device -I $(USERPROFILE)/Dropbox/NDK_3.9/Include/include_i -I sana2_v2/include -L replayeth.txt
215

316
; This device driver is split into three parts

oled/kprintf.i

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; oled driver - I2C example code for the REPLAY 68060 daughterboard
8+
; Copyright (C) Erik Hemming
9+
;
10+
; This software is licensed under LPGLv2.1 ; see LICENSE file
11+
;
12+
;
113

214
kprintf MACRO
315
IFD ENABLE_KPRINTF

oled/oled.s

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; oled driver - I2C example code for the REPLAY 68060 daughterboard
8+
; Copyright (C) Erik Hemming
9+
;
10+
; This software is licensed under LPGLv2.1 ; see LICENSE file
11+
;
12+
;
13+
114
section oled_test,code_p
215

316
ENABLE_KPRINTF

rtc/battclock.s

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; battclock.resource - Replacement RTC device driver for the REPLAY 68060 daughterboard
8+
; Copyright (C) FPGAArcade community
9+
;
10+
; Contributors : Erik Hemming
11+
;
12+
; This software is licensed under LPGLv2.1 ; see LICENSE file
13+
;
14+
;
15+
116
;./vasmm68k_mot -Fhunkexe -align -nosym battclock.s -o battclock.resource -I ~/Documents/amiga-root/SYS/Code/NDK_3.9/Include/include_i
217

318
section BattClock,code_p

rtc/kprintf.i

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; battclock.resource - Replacement RTC device driver for the REPLAY 68060 daughterboard
8+
; Copyright (C) FPGAArcade community
9+
;
10+
; Contributors : Erik Hemming
11+
;
12+
; This software is licensed under LPGLv2.1 ; see LICENSE file
13+
;
14+
;
15+
116
kprintf MACRO
217
IFD ENABLE_KPRINTF
318
cmp.l #$baadc0de,0.l ; kludge to dynamically enable/disable printf's

rtg/P96BoardInfo.i

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
;
2+
; WWW.FPGAArcade.COM
3+
;
4+
; REPLAY Retro Gaming Platform
5+
; No Emulation No Compromise
6+
;
7+
; Replay.card - P96 RTG driver for the REPLAY Amiga core
8+
; Copyright (C) FPGAArcade community
9+
;
10+
; Contributors : Jakub Bednarski, Mike Johnson, Jim Drew, Erik Hemming, Nicolas Hamel
11+
;
12+
; This software is licensed under LPGLv2.1 ; see LICENSE file
13+
;
14+
;
15+
116
PSSO_BoardInfo_RegisterBase = 0
217
PSSO_BoardInfo_MemoryBase = 4
318
PSSO_BoardInfo_MemoryIOBase = 8

0 commit comments

Comments
 (0)