Ready for github publishing
This commit is contained in:
@ -1,4 +1,21 @@
|
||||
/**
|
||||
*
|
||||
* This file is part of Pat80 Utils.
|
||||
*
|
||||
* Pat80 Utils is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Pat80 Utils is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY * without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Pat80 Utils. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
* SN76489 sound chip test
|
||||
*
|
||||
* DATA BUS IS: 2, 3, 4, 5, 6, 7, 8, 9 (NOTE: 2 is D0, but D0 is the MSB)
|
||||
|
@ -1,4 +1,20 @@
|
||||
/**
|
||||
* This file is part of Pat80 IO Devices.
|
||||
*
|
||||
* Pat80 IO Devices is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Pat80 IO Devices is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY * without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Pat80 IO Devices. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
* Composite pal adapter test.
|
||||
* This sketch makes an Arduino send test data to tha Pat80 composite video pal adapter.
|
||||
* Connect the video adapter directly to Arduino
|
||||
|
@ -1,4 +1,23 @@
|
||||
/* ************** EEPROM PROGRAMMER ******************
|
||||
* This file is part of Pat80 Utils.
|
||||
*
|
||||
* Pat80 Utils is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Pat80 Utils is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY * without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Pat80 Utils. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
NOTE: This is not working and I'm not sure if it will be fixed or removed,
|
||||
as I'm actually using an USB programmer.
|
||||
|
||||
|
||||
HARDWARE:
|
||||
|
||||
|
@ -1,4 +1,23 @@
|
||||
/* HD44780 Character display debugger */
|
||||
/*
|
||||
* This file is part of Pat80 Utils.
|
||||
*
|
||||
* Pat80 Utils is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Pat80 Utils is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY * without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Pat80 Utils. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
* HD44780 Character display debugger
|
||||
* Used to intercept data sent from Pat80 to character display
|
||||
*/
|
||||
|
||||
#define EN 2
|
||||
const byte DATA_BUS[] = {10, 9, 8, 7, 6, 5, 4, 3};
|
||||
|
@ -1,4 +1,23 @@
|
||||
/* PS/2 Keyboard controller debugger */
|
||||
/*
|
||||
* This file is part of Pat80 Utils.
|
||||
*
|
||||
* Pat80 Utils is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Pat80 Utils is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY * without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Pat80 Utils. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
* PS/2 Keyboard controller debugger
|
||||
* Used to intercept data decoded from Pat80 PS/2 keyboard adapter
|
||||
*/
|
||||
|
||||
#define EN 2
|
||||
const byte DATA_BUS[] = {10, 9, 8, 7, 6, 5, 4, 3};
|
||||
|
@ -1,7 +1,24 @@
|
||||
/**
|
||||
*
|
||||
* This file is part of Pat80 Utils.
|
||||
*
|
||||
* Pat80 Utils is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Pat80 Utils is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY * without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Pat80 Utils. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
* SPI SD-Card test sketch
|
||||
* Reads the first 128 bytes from sdcard and prints it out as ascii characters in serial monitor at 9200 baud
|
||||
*
|
||||
*
|
||||
* Implementation of the specification at http://elm-chan.org/docs/mmc/mmc_e.html
|
||||
*/
|
||||
|
||||
|
@ -1,4 +1,20 @@
|
||||
/* ************** DEBUGGER Zilog Z80 ******************
|
||||
*
|
||||
* This file is part of Pat80 Utils.
|
||||
*
|
||||
* Pat80 Utils is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Pat80 Utils is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY * without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Pat80 Utils. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
HARDWARE:
|
||||
|
||||
|
Reference in New Issue
Block a user