Skip to content

Commit

Permalink
Roll 2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
roscopeco committed Oct 22, 2023
1 parent 3235931 commit ba6dbd0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# Really Old-School Computer - M68K
## A Motorola 68k Single-Board Computer

> **Note**: The Github issue tracker is **not** the place to ask questions about having boards manufactured or the parts you should buy to populate said boards. You are welcome to [join us on Discord](https://discord.gg/rDkE3Xr) and ask those questions, but issues raised here will be closed without comment.
> **Note**: This is the **develop** branch, where the latest development files live. It is not guaranteed to contain stable code or working designs at any given point. If you are looking for code to use with your board or stable designs, these can be found on the relevant release branches: The [latest 2.2 release branch](https://github.com/rosco-m68k/rosco_m68k/tree/release/version-2.2) for revision 2.x boards, the [1.3 release branch](https://github.com/rosco-m68k/rosco_m68k/tree/release/version-1.3), the [1.2 release branch](https://github.com/rosco-m68k/rosco_m68k/tree/release/revision-1.2) for **revision 1.2** boards, or the [1.1 release branch](https://github.com/rosco-m68k/rosco_m68k/tree/release/revision-1.1) (or the [1.01 release branch if you have firmware 1.01](https://github.com/rosco-m68k/rosco_m68k/tree/release/revision-1.01)) for **revision 1 boards**. Code built or PCBs manufactured from the develop branch are likely to contain development and pre-production bugs, be incomplete, or just plain not work. Code and designs here are liable to change in utterly-incompatible ways without notice!
> **Note**: This is the Version 2.4 release branch. If you are using Firmware 2.4 (regardless of base board revision), this is the branch you should be using to build the standard libraries and example programs.
This repository holds design files, firmware and software for the Really Old-School Computer
(M68k) single-board computer, AKA the rosco_m68k. This is a fully-featured, programmable,
Expand Down
2 changes: 1 addition & 1 deletion code/firmware/rosco_m68k_firmware/bootstrap.asm
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,6 @@ SZ_BANNER1 dc.b " ___ ___ _ ", $D, $A
SZ_BANNER2 dc.b " ___ ___ ___ ___ ___ _____| _| . | |_ ", $D, $A
SZ_BANNER3 dc.b "| _| . |_ -| _| . | | | . | . | '_|", $D, $A
SZ_BANNER4 dc.b "|_| |___|___|___|___|_____|_|_|_|___|___|_,_|", $D, $A
SZ_BANNER5 dc.b " |_____|", $1B, "[1;37m Classic ", $1B, "[1;30m2.30.DEV", $1B, "[0m", $D, $A, 0
SZ_BANNER5 dc.b " |_____|", $1B, "[1;37m Classic ", $1B, "[1;30m2.40", $1B, "[0m", $D, $A, 0

SZ_CRLF:: dc.b $D, $A, 0
4 changes: 2 additions & 2 deletions code/firmware/rosco_m68k_firmware/rosco_m68k_private.asm
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
; bit 14 : Requires larger system data area
; bit 15 : Snapshot version
ifd HUGEROM
RELEASE_VER equ $E0000230
RELEASE_VER equ $60000240
else
RELEASE_VER equ $C0000230
RELEASE_VER equ $40000240
endif

VECTORS_LOAD equ $00000000
Expand Down

0 comments on commit ba6dbd0

Please sign in to comment.