Skip to content

Commit

Permalink
ibm/thinkpad600.cpp: hookup Super I/O
Browse files Browse the repository at this point in the history
  • Loading branch information
angelosa committed Oct 4, 2024
1 parent 52db3f2 commit 115ac93
Show file tree
Hide file tree
Showing 4 changed files with 592 additions and 16 deletions.
12 changes: 12 additions & 0 deletions scripts/src/machine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4474,6 +4474,18 @@ if (MACHINES["PC87306"]~=null) then
}
end

---------------------------------------------------
--
--@src/devices/machine/pc97338.h,MACHINES["PC97338"] = true
---------------------------------------------------

if (MACHINES["PC97338"]~=null) then
files {
MAME_DIR .. "src/devices/machine/pc97338.cpp",
MAME_DIR .. "src/devices/machine/pc97338.h",
}
end

---------------------------------------------------
--
--@src/devices/machine/w83787f.h,MACHINES["W83787F"] = true
Expand Down
Loading

2 comments on commit 115ac93

@angelosa
Copy link
Member Author

@angelosa angelosa commented on 115ac93 Oct 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm inclined to move the Super I/O stuff to bus/superio, being conceptually similar and (eventually) needs ISA dependency removed (given that FDC37C665GT already transcend outside the x86 realm, being used by konami/firebeat.cpp/konami/twinkle.cpp ).
Objections?

@rb6502
Copy link
Contributor

@rb6502 rb6502 commented on 115ac93 Oct 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Super I/O isn't a bus type. I think devices/machine/superio would make more sense.

Please sign in to comment.