mirror of
https://github.com/tjboldt/Apple2-IO-RPi.git
synced 2024-11-15 18:06:11 +00:00
Update copyright notices
This commit is contained in:
parent
b5a679a2e6
commit
c6fc90e21f
@ -1,3 +1,10 @@
|
||||
; Copyright Terence J. Boldt (c)2020-2022
|
||||
; Use of this source code is governed by an MIT
|
||||
; license that can be found in the LICENSE file.
|
||||
|
||||
; This file contains the source for the firmware
|
||||
; that was formerly used to act as a pseudo-shell
|
||||
|
||||
;ProDOS Zero Page
|
||||
Command = $42 ;ProDOS Command
|
||||
Unit = $43 ;ProDOS unit (SDDD0000)
|
||||
|
@ -1,3 +1,12 @@
|
||||
; Copyright Terence J. Boldt (c)2020-2022
|
||||
; Use of this source code is governed by an MIT
|
||||
; license that can be found in the LICENSE file.
|
||||
|
||||
; This file contains the source for the firmware
|
||||
; that allows the Apple II to boot from the card
|
||||
; and for ProDOS to recognize the card as two
|
||||
; hard drivers
|
||||
|
||||
;ProDOS Zero Page
|
||||
Command = $42 ;ProDOS Command
|
||||
Unit = $43 ;ProDOS unit (SDDD0000)
|
||||
|
@ -1,3 +1,11 @@
|
||||
; Copyright Terence J. Boldt (c)2020-2022
|
||||
; Use of this source code is governed by an MIT
|
||||
; license that can be found in the LICENSE file.
|
||||
|
||||
; This file contains the source for the firmware
|
||||
; that was formerly used to copy files from RPi
|
||||
; to Apple II RAM
|
||||
|
||||
;ProDOS Zero Page
|
||||
Command = $42 ;ProDOS Command
|
||||
Unit = $43 ;ProDOS unit (SDDD0000)
|
||||
|
@ -1,3 +1,12 @@
|
||||
; Copyright Terence J. Boldt (c)2020-2022
|
||||
; Use of this source code is governed by an MIT
|
||||
; license that can be found in the LICENSE file.
|
||||
|
||||
; This file contains the source for the firmware
|
||||
; that displays the copyright message on boot
|
||||
; and checks for the RPi status to be ready before
|
||||
; attempting to boot
|
||||
|
||||
;ProDOS Zero Page
|
||||
Command = $42 ;ProDOS Command
|
||||
Unit = $43 ;ProDOS unit (SDDD0000)
|
||||
|
@ -1,3 +1,12 @@
|
||||
; Copyright Terence J. Boldt (c)2021-2022
|
||||
; Use of this source code is governed by an MIT
|
||||
; license that can be found in the LICENSE file.
|
||||
|
||||
; This file contains the source for the RPI.COMMAND
|
||||
; application that runs on the Apple II and extends
|
||||
; ProDOS BASIC.SYSTEM to add the RPI command which
|
||||
; allows commands to be executed on the Raspberry Pi
|
||||
|
||||
.ORG $300
|
||||
INBUF = $200 ;GETLN input buffer.
|
||||
WAIT = $FCA8 ;Monitor wait routine.
|
||||
|
@ -1,3 +1,11 @@
|
||||
; Copyright Terence J. Boldt (c)2021-2022
|
||||
; Use of this source code is governed by an MIT
|
||||
; license that can be found in the LICENSE file.
|
||||
|
||||
; This file contains the source for the SHELL
|
||||
; application that runs on the Apple II to talk
|
||||
; to the Raspberry Pi
|
||||
|
||||
;ProDOS Zero Page
|
||||
Command = $42 ;ProDOS Command
|
||||
Unit = $43 ;ProDOS unit (SDDD0000)
|
||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020-2021 Terence J. Boldt
|
||||
Copyright (c) 2020-2022 Terence J. Boldt
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright Terence J. Boldt (c)2021
|
||||
// Copyright Terence J. Boldt (c)2021-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright Terence J. Boldt (c)2021
|
||||
// Copyright Terence J. Boldt (c)2021-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright Terence J. Boldt (c)2021
|
||||
// Copyright Terence J. Boldt (c)2021-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright Terence J. Boldt (c)2021
|
||||
// Copyright Terence J. Boldt (c)2021-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains VT100 terminal emulation
|
||||
// This file contains VT100 terminal emulation
|
||||
|
||||
package a2io
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains the main driver code for the Raspberry Pi side of
|
||||
// This file contains the main driver code for the Raspberry Pi side of
|
||||
// the Apple2-IO-RPi hardware. Commands are sent from the Apple II and
|
||||
// responses are sent back from the Raspberry Pi.
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Copyright Terence J. Boldt (c)2021
|
||||
// Copyright Terence J. Boldt (c)2021-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains the handler for executing Linux and internal
|
||||
// This file contains the handler for executing Linux and internal
|
||||
// commands
|
||||
|
||||
package handlers
|
||||
@ -219,7 +219,7 @@ func a2wifiSelect(linuxCommand string) (string, error) {
|
||||
region := params[4]
|
||||
linuxCommand = "printf \"country=%s\\nupdate_config=1\\nctrl_interface=/var/run/wpa_supplicant\\n\\nnetwork={\\n scan_ssid=1\\n ssid=\\\"%s\\\"\n psk=\\\"%s\\\"\\n}\\n\" " +
|
||||
region + " " +
|
||||
ssid + " " +
|
||||
ssid + " " +
|
||||
psk + " " +
|
||||
" > /tmp/wpa_supplicant.conf; " +
|
||||
"sudo mv /tmp/wpa_supplicant.conf /etc/wpa_supplicant/; " +
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains the handler for retrieving the ProDOS timestamp
|
||||
// This file contains the handler for retrieving the ProDOS timestamp
|
||||
// based on the current time
|
||||
|
||||
package handlers
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains the handler for loading files directly from the
|
||||
// This file contains the handler for loading files directly from the
|
||||
// Raspberry Pi onto the Apple II
|
||||
|
||||
package handlers
|
||||
|
@ -1,3 +1,10 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file contains the tests for the handler for
|
||||
// loading files directly from the Raspberry Pi onto the Apple II
|
||||
|
||||
package handlers
|
||||
|
||||
import (
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains the handler for displaying the menu of choices on
|
||||
// This file contains the handler for displaying the menu of choices on
|
||||
// the Apple II
|
||||
|
||||
package handlers
|
||||
|
@ -1,3 +1,10 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file contains the test for the handler for
|
||||
// displaying the menu of choices on the Apple II
|
||||
|
||||
package handlers
|
||||
|
||||
import (
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains the handler for displaying the menu of choices on
|
||||
// This file contains the handler for displaying the menu of choices on
|
||||
// the Apple II
|
||||
|
||||
package handlers
|
||||
|
@ -1,8 +1,8 @@
|
||||
// Copyright Terence J. Boldt (c)2020-2021
|
||||
// Copyright Terence J. Boldt (c)2020-2022
|
||||
// Use of this source code is governed by an MIT
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// This file is contains the handler for executing Linux shell
|
||||
// This file contains the handler for executing Linux shell
|
||||
|
||||
package handlers
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user