From 947aa96bcd32b2487046f5a357d9685bfc298ae6 Mon Sep 17 00:00:00 2001 From: Jeroen Domburg Date: Sun, 4 Feb 2018 15:41:29 +0800 Subject: [PATCH] Add licenses --- firmware/components/mipidisp/hexdump.c | 8 ++++++++ firmware/components/mipidisp/mipi.c | 8 ++++++++ firmware/components/mipidisp/mipi_dsi.c | 8 ++++++++ firmware/components/tme-esp32/adns9500.c | 8 ++++++++ firmware/components/tme-esp32/hd.c | 9 +++++++++ firmware/components/tme-esp32/localtalk.c | 8 ++++++++ firmware/components/tme-esp32/main.c | 8 ++++++++ firmware/components/tme-esp32/mipi_lcd.c | 8 ++++++++ firmware/components/tme-esp32/mpu6050.c | 9 +++++++++ firmware/components/tme-esp32/mpumouse.c | 9 +++++++++ firmware/components/tme-esp32/snd.c | 8 ++++++++ firmware/components/tme-esp32/spi_lcd.c | 17 +++++++++-------- firmware/components/tme/emu.c | 8 ++++++++ firmware/components/tme/iwm.c | 8 ++++++++ firmware/components/tme/mouse.c | 8 ++++++++ firmware/components/tme/ncr.c | 8 ++++++++ firmware/components/tme/network/basiliskif.c | 9 +++++++++ firmware/components/tme/network/ddp.c | 10 ++++++++++ firmware/components/tme/network/etalktst | Bin 14168 -> 0 bytes firmware/components/tme/network/ethertalk.c | 10 ++++++++++ firmware/components/tme/network/localtalk.c | 9 +++++++++ firmware/components/tme/network/sniff.c | 8 ++++++++ firmware/components/tme/romhack/recalcchs.c | 9 +++++++++ firmware/components/tme/rtc.c | 8 ++++++++ firmware/components/tme/scc.c | 8 ++++++++ firmware/components/tme/sdl/disp.c | 9 +++++++++ firmware/components/tme/sdl/hd.c | 9 +++++++++ firmware/components/tme/sdl/main.c | 9 +++++++++ firmware/components/tme/sdl/snd.c | 9 +++++++++ firmware/components/tme/via.c | 8 ++++++++ 30 files changed, 247 insertions(+), 8 deletions(-) delete mode 100755 firmware/components/tme/network/etalktst diff --git a/firmware/components/mipidisp/hexdump.c b/firmware/components/mipidisp/hexdump.c index 062ea7e..4f58852 100644 --- a/firmware/components/mipidisp/hexdump.c +++ b/firmware/components/mipidisp/hexdump.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/mipidisp/mipi.c b/firmware/components/mipidisp/mipi.c index 1394335..eb39c9d 100644 --- a/firmware/components/mipidisp/mipi.c +++ b/firmware/components/mipidisp/mipi.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ /* Thing to emulate single-lane MIPI using a flipflop and a bunch of resistors. */ diff --git a/firmware/components/mipidisp/mipi_dsi.c b/firmware/components/mipidisp/mipi_dsi.c index abe3066..149977e 100644 --- a/firmware/components/mipidisp/mipi_dsi.c +++ b/firmware/components/mipidisp/mipi_dsi.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme-esp32/adns9500.c b/firmware/components/tme-esp32/adns9500.c index cf63656..6dbeb45 100644 --- a/firmware/components/tme-esp32/adns9500.c +++ b/firmware/components/tme-esp32/adns9500.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme-esp32/hd.c b/firmware/components/tme-esp32/hd.c index f70140f..fc84321 100644 --- a/firmware/components/tme-esp32/hd.c +++ b/firmware/components/tme-esp32/hd.c @@ -1,3 +1,12 @@ +//SCSI HD emulated using ESP32 flash +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme-esp32/localtalk.c b/firmware/components/tme-esp32/localtalk.c index f4da394..2844819 100644 --- a/firmware/components/tme-esp32/localtalk.c +++ b/firmware/components/tme-esp32/localtalk.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include //All stubbed out for now. diff --git a/firmware/components/tme-esp32/main.c b/firmware/components/tme-esp32/main.c index 7b5fd06..1ffea5f 100644 --- a/firmware/components/tme-esp32/main.c +++ b/firmware/components/tme-esp32/main.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include "esp_attr.h" #include "rom/cache.h" diff --git a/firmware/components/tme-esp32/mipi_lcd.c b/firmware/components/tme-esp32/mipi_lcd.c index d98298c..7ca7e09 100644 --- a/firmware/components/tme-esp32/mipi_lcd.c +++ b/firmware/components/tme-esp32/mipi_lcd.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme-esp32/mpu6050.c b/firmware/components/tme-esp32/mpu6050.c index 284f680..63ab7b6 100644 --- a/firmware/components/tme-esp32/mpu6050.c +++ b/firmware/components/tme-esp32/mpu6050.c @@ -1,3 +1,12 @@ +//Failed attempt to emulate a mouse using an MPU +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include "driver/i2c.h" #include "mpu6050.h" diff --git a/firmware/components/tme-esp32/mpumouse.c b/firmware/components/tme-esp32/mpumouse.c index af701f6..4da60f6 100644 --- a/firmware/components/tme-esp32/mpumouse.c +++ b/firmware/components/tme-esp32/mpumouse.c @@ -1,3 +1,12 @@ +//Failed attempt to emulate a mouse using a MPU +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/portmacro.h" diff --git a/firmware/components/tme-esp32/snd.c b/firmware/components/tme-esp32/snd.c index 79f33c0..62442ba 100644 --- a/firmware/components/tme-esp32/snd.c +++ b/firmware/components/tme-esp32/snd.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme-esp32/spi_lcd.c b/firmware/components/tme-esp32/spi_lcd.c index b8abcd3..d367f00 100644 --- a/firmware/components/tme-esp32/spi_lcd.c +++ b/firmware/components/tme-esp32/spi_lcd.c @@ -1,11 +1,12 @@ -/* SPI Master example - - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ +//Driver for the LCD on an ESP32-Wrover-Kit board +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/emu.c b/firmware/components/tme/emu.c index b1469c6..87a06b9 100644 --- a/firmware/components/tme/emu.c +++ b/firmware/components/tme/emu.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/iwm.c b/firmware/components/tme/iwm.c index a249588..0695508 100644 --- a/firmware/components/tme/iwm.c +++ b/firmware/components/tme/iwm.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include /* diff --git a/firmware/components/tme/mouse.c b/firmware/components/tme/mouse.c index 2d88a58..703d842 100644 --- a/firmware/components/tme/mouse.c +++ b/firmware/components/tme/mouse.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include "mouse.h" typedef struct { diff --git a/firmware/components/tme/ncr.c b/firmware/components/tme/ncr.c index 6cdacba..599e5c1 100644 --- a/firmware/components/tme/ncr.c +++ b/firmware/components/tme/ncr.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include "ncr.h" diff --git a/firmware/components/tme/network/basiliskif.c b/firmware/components/tme/network/basiliskif.c index f90635e..74c243c 100644 --- a/firmware/components/tme/network/basiliskif.c +++ b/firmware/components/tme/network/basiliskif.c @@ -1,3 +1,12 @@ +//Unfinished appletalk-over-wifi attempt +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/network/ddp.c b/firmware/components/tme/network/ddp.c index 2497fbc..7199c1c 100644 --- a/firmware/components/tme/network/ddp.c +++ b/firmware/components/tme/network/ddp.c @@ -1,3 +1,13 @@ +//Unfinished appletalk-over-wifi attempt +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ + #include #include #include diff --git a/firmware/components/tme/network/etalktst b/firmware/components/tme/network/etalktst deleted file mode 100755 index 42a8036e7070ab8d565e4298243b881e90f79f4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14168 zcmeHOeRxz=dOwp82nd<*DSmQw%{Cy60hFSaC6i>}#!VDSV(qRtOePZ&NoKP1fx!xk z47l8mvFX;ftn0SawfoR+pU01O1zD9K7Sw&JfvQVg`!q}amk}ws*kO0|H ztf#J!ET|zf8LHz*Ysz-SlHG{58_{-5hjd^}xqehPx|+2=C#{2w5>wKpwC??Q8|C}w zO7=YZh=K)Ew!0m66z6Z6%C+KpU0$Jfsnqc^)zuZ(b#=C`xc<7Xwk2Ji;Y9C}-jyqs zthnA2i+GmFdXsE8etP7wSyTvzA8?*x`F&W-~3MFnty@f)P! zx& zSUeDo`?~|3VG)i;I%2|K-`wbL3q?blI%Dxrw7IdiD-sSh2U@$xW>a@0tZn?lf6EsC zdaYO66^O+`+B~oE+J^d?TK_W7a>2P}o*SsK=_xJB^Dm1kts*?TYGQDKx&ZQgGP|>L z20htdXe@DQ=Tx$uLP|(H-|{?JMID4Rq~}$}NA&u$-!P<{apngXD4gaz6^T?6r);=( zEd@h1906uh+J@W5)rbwBozWIz%!bn(#%aEea|!@mRVgxTIL&vQDs4E=;UufF;r4ZI zr46^w^VK$-%I0L+aBe%2t+V0im`u9UhU=!6vW+%;dPZA_4jW!(!+UJF+lKera2_ip z-eJRM+VuC>aJ>{tX}=AhXVc$n!!NesX7X&QnJW2Yo*~TL1M#AXK{NSs>CueF#0^Ck z8)Bkj67KE=)yNUwLGt0D38ae8VcOv$eo*qiBA$la@POn$BA&W-_$kSsCZ4)778^kNbv-#NlTyMg%p)TfWnWNg>?~&hovND)|fP zx=|UM*6Xm`4_R_-A~74CQH7D2{&0L^;vkuwDLF{ty?Rtu^MSKZfibNY?nJX#KWfHZ zYCT7Bn0&1xC9d}FDSB`C3P-Rj)~Zu6xhW0S38X7HGqdj20s zJyqg{^gBmBy3{q899q3_@Q`edBj!JyHmyN(>T%QhoYbvHq`KL+n;x3nid%>_RdReb zO6heW4AOuixv#edpF?ay_Ks;COMef#mTxq>5B|Q`F`!ivbBaAUKj4&ta+}Rly*%7R3D$il60v_M~;<$j>o}O9=51H1&k_lJzYs+!wEIAHk^8^^T5S*-?gOV3C=~X*#0IQ)WK3^io>tYlUd2S#la=PTfwU*b zT=FqEl2N<}@R{wpAg#JdsTN7q$1|!!{|VKmT-D!Es>M=uS4QhVHQ=Dw@zEvM#_EM3IWQ``1Q7hb`yq{(i-e3g?eI!)fHC;9M zRfvY``-6Jj;!EgJQF7~T6262yF@*P;{8xNHxswQbzA5+f?e zModa7N3-CWQN5D!^k%itv~UXk(uf+>6vInVOsZu(m!>E?t-k(Vt(Vhw{~<*_S8x z0^$8#?;T!i!rS7-yIREuQ|TS7Zwb++dh64A>#c@`^nOxm9{Hj;{l+NTVfQcM#?qhh z`&WbYQG@kq9Xw3TdDl!Hb(uH*OX4GXhyMBo?_J&v-n+g2qy5<;KR$|~M*j3$HhmxZ z=wsTTPvy?=CLK-Xq(TeLP3 zjV5~HH&wJTy>+34o>Oxy8+C;~_27QJb6}?7JG=dP25nk{5b?ZalNQ7c> zosacI!m*HK)a7p~rN*JabEl=i!(loNhA zt~6r3R_hSSuP?+kkdgkLU#U8Xvhp=$^KWrqbZ_YnvHH@R7cIZ$YPPRKW(WMz#}Fs7 zy$jcVw8e)6ddtcmEUKL`x#%<^Qoip896=jRLY=eniH!U)z)fhoZ-HjzJ2Ud<0Uv^V zXO4VZM*c4F%hBevN0qhjm2#@zIIgXbNA2bNlEuXxE~!Iim*cty@}uahO1ob1m!uNO z>wy0ReJH<+xt=qzf%@p#?6qz=an0U$y}6tMfiO zyP>I`5>wvO9ny;|?~OO>1^g1Fp4qp*O!K@ZU#j_`D-4;Vb%hekKRGuMA%3r(-0`_0 z)7T_M@%b*(K`rOK=h-?y-ou}-_2z2I1YZ~`8HS|1hV0e${2oFZtdy|xC6lQE#(Q)i z9QP@$M;ot{xO^;AvOa*MDqfK!U#;!&sU&%B-x1AE*K#b^Ql5!hdjJ2s@$cBq2@GSRKEm?ZwLX|U?RW1GPsufFDIxFMgi!u87yn$UrziILB^tpJki1Wa* z35xMcHjir?j91dr!je6rwipNmfsJU(*qQo-XY7oRG4yyoK51dr=n{35~6cP@^n zU$=WMK0_Fe_9uCKKTFE4(ncq%W>vu4(d z3)xBHKPIw>%F%r666eQH^KcQ`f1{&c$TQ*l95`)05bm7+>Al@0vT;%zl$vn4@HWo# zxCC*#4;T62^@Q;Uk#Xhem%jp@uU^j-!0G3SeENmj=M`D*EU}j-Wbl;U#+9$#NS4q4 zX%ZlQXMJh=!6nWgC*xY5f4`P2Zf@Ct=a1*BfxGgIpOwI8p*`2>=Yppd6ZlO0ioQqV zyiPVreJ(9aJAfNmHj{e-4h?bs_@r+^D)*#b;CE_^hb5jd&t&##{f&A7{!mMvETDf} z>(|n6JxKDK7W5?Wa>V0&E^4Iy`SZp<7w}KJVY8%X#|`zRdM(mI`7H~T=@NJ7f?ZGm zUtR!TtNk~ZDPQuNAK9h?`k?~&t^zo%AJp%Cj(&d}IJKK|o_SLGDHCh;i`yi$3nlt# z(U7^^+dq>3qDus?pDcZcaFoFFvwj^D!_q%%W$70ZFB3nUt*}ZhD#42kwf~UD7u&nDcX@vrLV=v%sgtp)t|0XH}Z8~sb|=YH+j(y}Lk zQ-3+@`{M$B-XeX(|Mxn6?#Fk4Uu`Rovu@zC#QE<7pGusyva}Qq^F4Q06~IL>8jr;j z?d_f*&M4hdyWZbW-_-2)i|jcjf4titq?1fIqU3Lj_&0S$S_55v9E^&_{DDNT2u8Yl zx~13iA)NZ!l` z(5kELhqeBvvtjax8V-^Lt=bU|b%h_FPQ2 z;F@TpTb-!O6{}-&xtKZ>my4z*WaaVsEjPMhNKM@Pj89zD>m|KXhyuCANM5r@^{(vgIH5Su_ zXOH^jx}jf6a*^(>jp)tHNR?fe4ZR7c3iXl2T(f+q0y9pUJA<1MX>(&O4{|zgnD@LO z9cF~8{m^1=L3HXd7s)yIm=!J8r!BLHJbCDeZS9T+T7@ST$D>HJgL61-8A7jl!jX8$ zIqF~-S2 z=X$#0!Xx|4gREy$1Z+Iii#yFXP>RTh!4vAxGfYPtoG_rLQj?lBSLsE>2+fw%g((2w;X*JxNu=vm5IN1nesl37E4{u6a5k{+8bee{w`)} zKxR+8?l86#8M{4yKQq0C6*YC**8#^*FcB`F-jgUX<@otMnfGm!mJqihL$9uEe^6(b zR%@Qtduk`P=g*2efMH3@*zoMI7IqfYm z&-(yO+1?pH$3Wk0)TV6D`vpu-X+NF_Z{}UKf=_x?c%KeUu%2rKYmYVTIHy}vp!Ed?0LV1DYcJ1Im@S0fm8&S&-*e= z`8j4E&hlS{fL{IS8KT7B&HQ&JPJQN?z6BdMF1F|I^r0)rTXwuDF3Yq1&mo}r*`D`< z(!a)@{e6H8ja|0qeIx!mpdsDu*+}WP#FCF&6FqEz) z`xKYCvmMhhNbKeFcjP`pnQ)x!fbEz+hYVp{fBqhM%1|0kd*}EmM&VSxvz~1KW#uMw zCtXT*%41JS)cus9Xs>>Ns5@z`;rMATqC{ejT>|>HZjs8|;0Tz@W!;&` wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/network/localtalk.c b/firmware/components/tme/network/localtalk.c index e946686..53b7fb8 100644 --- a/firmware/components/tme/network/localtalk.c +++ b/firmware/components/tme/network/localtalk.c @@ -1,3 +1,12 @@ +//Unfinished appletalk-over-wifi attempt +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/network/sniff.c b/firmware/components/tme/network/sniff.c index 15d45fa..78f0913 100644 --- a/firmware/components/tme/network/sniff.c +++ b/firmware/components/tme/network/sniff.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/romhack/recalcchs.c b/firmware/components/tme/romhack/recalcchs.c index c357a27..5631f6f 100644 --- a/firmware/components/tme/romhack/recalcchs.c +++ b/firmware/components/tme/romhack/recalcchs.c @@ -1,3 +1,12 @@ +//Tool to recalculate the checksum on a Mac ROM +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include "stdio.h" #include "stdint.h" #include diff --git a/firmware/components/tme/rtc.c b/firmware/components/tme/rtc.c index 6649819..71698c9 100644 --- a/firmware/components/tme/rtc.c +++ b/firmware/components/tme/rtc.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/scc.c b/firmware/components/tme/scc.c index e8d2f6d..7c69418 100644 --- a/firmware/components/tme/scc.c +++ b/firmware/components/tme/scc.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include "scc.h" diff --git a/firmware/components/tme/sdl/disp.c b/firmware/components/tme/sdl/disp.c index 85009e6..730e31d 100644 --- a/firmware/components/tme/sdl/disp.c +++ b/firmware/components/tme/sdl/disp.c @@ -1,3 +1,12 @@ +//Stuff for a host-build of TME +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/sdl/hd.c b/firmware/components/tme/sdl/hd.c index c996c8d..c253a1a 100644 --- a/firmware/components/tme/sdl/hd.c +++ b/firmware/components/tme/sdl/hd.c @@ -1,3 +1,12 @@ +//Stuff for a host build of TME +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/sdl/main.c b/firmware/components/tme/sdl/main.c index 0a6f563..e1a9a63 100644 --- a/firmware/components/tme/sdl/main.c +++ b/firmware/components/tme/sdl/main.c @@ -1,3 +1,12 @@ +//Stuff for a host build of TME +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include diff --git a/firmware/components/tme/sdl/snd.c b/firmware/components/tme/sdl/snd.c index ec640d0..327e881 100644 --- a/firmware/components/tme/sdl/snd.c +++ b/firmware/components/tme/sdl/snd.c @@ -1,3 +1,12 @@ +//Stuff for a host build of TME +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include diff --git a/firmware/components/tme/via.c b/firmware/components/tme/via.c index 9e2b5a3..b5fe359 100644 --- a/firmware/components/tme/via.c +++ b/firmware/components/tme/via.c @@ -1,3 +1,11 @@ +/* + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * Jeroen Domburg wrote this file. As long as you retain + * this notice you can do whatever you want with this stuff. If we meet some day, + * and you think this stuff is worth it, you can buy me a beer in return. + * ---------------------------------------------------------------------------- + */ #include #include #include "via.h"