mac-rom-simm-programmer/hal/pc/spi_private.h
Doug Brown 7d0c5e2a09 Implement dummy PC build with stubs
It doesn't actually do anything yet, but it builds and runs. The next
step will be to actually implement "fake" GPIO, USB, and parallel bus.
2021-07-17 14:59:18 -07:00

35 lines
1.1 KiB
C

/*
* spi_private.h
*
* Created on: Jul 17, 2021
* Author: Doug
*
* Copyright (C) 2011-2021 Doug Brown
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef HAL_PC_SPI_PRIVATE_H_
#define HAL_PC_SPI_PRIVATE_H_
/// Private data for an SPI device on the PC simulator
typedef struct SPIDevicePrivate
{
/// Nothing special for PC
} SPIDevicePrivate;
#endif /* HAL_PC_SPI_PRIVATE_H_ */