Skip to content

Commit

Permalink
Move Athens emulator to devices/common/clockgen
Browse files Browse the repository at this point in the history
  • Loading branch information
maximumspatium committed Jan 3, 2025
1 parent 4ed13cd commit 4c0796f
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions devices/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ include_directories("${PROJECT_SOURCE_DIR}"
platform_glob(SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/common/*.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/common/adb/*.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/common/clockgen/*.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/common/i2c/*.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/common/ata/*.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/common/nubus/*.cpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
This is helpful especially for calculating video parameters.
*/

#include <devices/common/i2c/athens.h>
#include <devices/common/clockgen/athens.h>
#include <loguru.hpp>

#include <algorithm>
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion devices/video/control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
Kudos to joevt#3510 for his precious technical help and HW hacking.
*/

#include <devices/common/i2c/athens.h>
#include <devices/common/i2c/i2c.h>
#include <devices/deviceregistry.h>
#include <devices/ioctrl/macio.h>
Expand Down
2 changes: 1 addition & 1 deletion devices/video/control.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#ifndef CONTROL_VIDEO_H
#define CONTROL_VIDEO_H

#include <devices/common/i2c/athens.h>
#include <devices/common/clockgen/athens.h>
#include <devices/common/pci/pcidevice.h>
#include <devices/video/appleramdac.h>
#include <devices/video/displayid.h>
Expand Down
1 change: 0 additions & 1 deletion devices/video/taos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
/** @file Taos video controller emulation. */

#include <core/bitops.h>
#include <devices/common/i2c/athens.h>
#include <devices/deviceregistry.h>
#include <devices/memctrl/memctrlbase.h>
#include <devices/video/taos.h>
Expand Down
1 change: 1 addition & 0 deletions devices/video/taos.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#ifndef TAOS_VIDEO_H
#define TAOS_VIDEO_H

#include <devices/common/clockgen/athens.h>
#include <devices/common/i2c/i2c.h>
#include <devices/common/mmiodevice.h>
#include <devices/video/videoctrl.h>
Expand Down
2 changes: 1 addition & 1 deletion machines/machinegossamer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

#include <cpu/ppc/ppcemu.h>
#include <devices/common/clockgen/athens.h>
#include <devices/common/hwcomponent.h>
#include <devices/common/i2c/i2c.h>
#include <devices/common/i2c/athens.h>
#include <devices/common/i2c/i2cprom.h>
#include <devices/common/machineid.h>
#include <devices/common/scsi/scsihd.h>
Expand Down

0 comments on commit 4c0796f

Please sign in to comment.