Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
cc4be64
minimal progress
asturur Jul 19, 2026
f080b63
Merge branch 'master' into review-blockout
asturur Jul 25, 2026
db14423
Merge branch 'master' into review-blockout
asturur Jul 31, 2026
e06aad7
1 hour of work 4 lines
asturur Jul 31, 2026
860a4dd
more bits
asturur Jul 31, 2026
1be3e1a
some progress
asturur Jul 31, 2026
02079c9
board picture
asturur Jul 31, 2026
cb374da
Merge branch 'master' into review-blockout
asturur Jul 31, 2026
46bf4dd
controls remap
asturur Jul 31, 2026
65689b9
less errors
asturur Jul 31, 2026
8ff6bba
correct toml
asturur Jul 31, 2026
316d6e5
more pcb
asturur Jul 31, 2026
d2ce926
Merge branch 'master' into review-blockout
jotego Aug 1, 2026
dc1949e
Merge branch 'master' into review-blockout
asturur Aug 2, 2026
3d3c9eb
Merge branch 'master' into review-blockout
asturur Aug 2, 2026
08fda9a
is that all for point 1?
asturur Aug 2, 2026
712144e
exact decoding
asturur Aug 2, 2026
0072b7a
could this be - preserving byte writes - ?
asturur Aug 3, 2026
ac9f19a
leverage jtframe_edge
asturur Aug 3, 2026
1d0dcfb
forgot this
asturur Aug 3, 2026
642bb41
and this
asturur Aug 3, 2026
6761f1e
Merge branch 'master' into review-blockout
asturur Aug 3, 2026
916ae3b
missed the dots
asturur Aug 3, 2026
49bc32b
send help
asturur Aug 3, 2026
6f958ee
Merge branch 'master' into review-blockout
asturur Aug 3, 2026
95ae968
added a colmix
asturur Aug 3, 2026
d4c587a
Merge branch 'review-blockout' of github.com:jotego/jtcores into revi…
asturur Aug 3, 2026
819e378
enabled gfx_en + made register
asturur Aug 4, 2026
2c0dd06
less comments
asturur Aug 4, 2026
4beb5d3
forgot this file
asturur Aug 4, 2026
23a9694
Merge branch 'master' into review-blockout
asturur Aug 10, 2026
6c29497
Merge branch 'master' into review-blockout
asturur Aug 14, 2026
0ebfee1
Merge branch 'master' into review-blockout
asturur Aug 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cores/blkout/cfg/macros.def
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ JTFRAME_PXLCLK=8
JTFRAME_BUTTONS=4
JTFRAME_JOY_DULR

JTFRAME_HEADER=1

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

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

It must be a multiple of 4 or it will break the Analogue Pocket firmware.


JTFRAME_BA1_START=0x040000
PCM_START=0x048000
JTFRAME_BA2_START=0x100000
Expand Down
15 changes: 13 additions & 2 deletions cores/blkout/cfg/mame2mra.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
[global]
author=["jotego"]
author=["Andrea Bogazzi"]
Comment thread
asturur marked this conversation as resolved.

[parse]
sourcefile=[ "blockout.cpp" ]
skip.setnames=["aggress"]

[header]
info = """ Header to identify the PCB type
Byte 0 = 0 for blockout, 1 for blockoutj
"""
data = [
{ machine="blockout", offset=0, data="00" },
{ machine="blockoutj", offset=0, data="01" },
]

[buttons]
names=[
{ names="A,B,C,Drop" }
{ machine="blockout", names="A,B,C,Drop"},
{ machine="blockoutj", names="Drop,B,C"}
]

[dipsw]
Expand Down
Loading