#z80

Siliciumoccitel
2026-03-09

Aujourd’hui :
💻 IA
☁️ cloud
⚡ GPU
En 1982 :
📼 cassette
⌛ patience
🧠 imagination
Le Sharp MZ-80A en faisait beaucoup avec très peu.
Un des plus beau de la série MZ non ?

Le Sharp MZ-80A prouve qu’on peut créer de chouettes jeux…
avec moins de RAM qu’un mail.
GripNewsGripNews
2026-03-08

🌗 GitHub - nevesnunes/z80-sans:能將 Z80 指令反組譯的 OpenType 字體
➤ 當字體成為編譯器:一場關於 OpenType 的極致技術實驗
github.com/nevesnunes/z80-sans
這是一款名為「Z80 Sans」的實驗性字體,它顛覆了傳統字體僅用於顯示文字的定義,透過巧妙運用 OpenType 的字形替換(GSUB)與字形定位(GPOS)表,實現了即時反組譯 Z80 處理器指令的功能。開發者透過程式化方式,將十六進位代碼直接轉換為可讀的組合語言助記符。雖然該技術面臨諸如位元組順序(Little-endian)、符號偏移量處理及海量指令組合等挑戰,但開發者最終透過遞迴下降解析器結合暴力破解法,直接操作底層 .ttx 文件,成功創造出這款極具創意與技術難度的「可執行」字體。
+ 這實在太瘋狂了!用 GSUB/GPOS 表做邏輯運算,這大概是 OpenType 標準發布以來最「非主流」的應用案例。
+ 很有趣的專案,雖然實務上反組譯器通常
架構

N-gated Hacker Newsngate
2026-03-08

Behold, a font that disassembles instructions, because apparently, wasn't nerdy enough without turning it into an art exhibit 🖼️🤓. GitHub's department strikes again, ensuring that even your font file can judge your code quality 👨‍💻📉. But hey, at least it's in , because nothing screams "cool" like a file format from the early 90s! 🎉
github.com/nevesnunes/z80-sans

Save 15% off my #RC2014 (& compatibles!) peripherals at my Tindie store this weekend! (8th/9th March).

tindie.com/stores/quazar

SID Soundchip Interface
SAA1099P Soundchip Interface
Graphic OLED Module
ZX True Tone Module
ZX-RC Bus Interface

#retrocomputing #z80 #chiptune

Graphic OLED Interface for RC2014 & CompatiblesSAA1099P Soundcard Interface for RC2014 & CompatiblesSID Soundchip Interface for RC2014 & CompatiblesZX True Tone (ZXTT) Module for Ed Brindley's YM/AY RC2014 Soundcard
@Rp12Biker :verified:Rp12Biker@oldbytes.space
2026-03-07

We're discussing about this industrial #Zilog #Z80 server machine. Two 8" floppy drives, no HDD. Someone of you know this machine?
Hold or exchange against another rare machine?
#ComputerMuseum

#CircuitBoards inside an unknown #Z80 server machineTwo 8" #floppy drives of the unknown machine
2026-03-07

Well, that seems to work. Not quite done with testing the read api but it does the graceful thing and stops reading if you haven't flushed the read pointer. #retrocomputing #z80

Absolute Beginner 🏳️‍⚧️abslutebeginner@masto.es
2026-03-03

Voy a darle un descanso al BASIC del Spectrum y a retomar mis lecciones de ensamblador para Zilog Z-80 y de código máquina. Necesito más velocidad y más eficiencia de los recursos. Además parece que el libro está dirigido personalmente a mí. 😎

#Spectrum #assembler #machineCode #z80

Portada del libro "Spectrum Machine Language for the Absolute Beginner", escrito por William Tang y publicado por Melbourne House en 1982.
Astatin 🐰 Dev Vtuberastatin@vt.social
2026-03-03

Gameboy Gamedev stream !!

Bug solving wowowow something that has never happened nobody has ever solved bugs before me

Join me !! twitch.tv/astatinchan/

#vtuber #twitch #stream #gameboy #gamedev #gameboydev #retrocomputing #assembly #Z80 #happyBunny

2026-03-01

:ablobcatattention: Books like this are rare, and even rarer being in spanish.
Brand new too. The cover was designed to look retro af.

Excelent as a gift for yourself or a friend.

「 Artificial Intelligence for the Z80: If you can build it in 8 bits, you really get it: Computer science in BASIC 」

amazon.es/Inteligencia-Artific

#ai #z80 #basic #retrocomputing

Book cover in Spanish,
Translation: Inteligencia Artificial para el Z80: Si puedes construirlo en 8 bits, realmente lo entiendes: La ciencia de la computación en BASIC
2026-02-28

Developer creates 'Conversational AI' that can run in 64kb of RAM on 1976 Zilog Z80 CPU-powered System — features a tiny Chatbot and a 20-Question guessing Game.

The venerable Zilog Z80 CPU has been around since 1976, and it has powered everything from calculators and home computers to arcade cabinets. But the 8-bit microprocessor isn't exactly a powerful CPU compared to what we use today. That said, developer HarryR has created Z80-μLM, a working "AI" for the well-respected microprocessor.

⁉️[HarryR] confirms that it won't pass the Turing test, but it is a bit of fun. And no, the price of Z80s will not be impacted by AI.⁉️

github.com/HarryR/z80ai

#zilog #z80 #conversational #ai #retrocomputing #engineering #media #retro #tech #news

👾According to the readme file, "Z80-μLM is a 'conversational AI' that generates short character-by-character sequences, with quantization-aware training (QAT) to run on a Z80 processor with 64kb of RAM." [HarryR]'s goal is to see how small an AI project can go, while still having a "personality". Can the AI be trained and fine-tuned? It seems that [HarryR] has done it in just 40KB, including inference, weights, and chat style user interface.👾

⁉️[HarryR] has kindly detailed the features of this Z80 AI project⁉️

• Trigram hash encoding: Input text is hashed into 128 buckets - typo-tolerant, word-order invariant
• 2-bit weight quantization: Each weight is {-2, -1, 0, +1}, packed 4 per byte
• 16-bit integer inference: All math uses Z80-native 16-bit signed arithmetic
• ~40KB .COM file: Fits in CP/M's Transient Program Area [TPA]
• Autoregressive generation: Outputs text character-by-character
• No floating point: Everything is integer math with fixed-point scaling
• Interactive chat mode: Just run CHAT with no arguments[ImageSource: HarryR]

👾The project comes with two examples. Tinychat is a conversational chatbot that responds to greetings and questions about itself with very short replies. The other is Guess, a 20-question game where the model knows a secret and I must try to guess.👾

Both of these examples are made available as binaries for use with CP/M systems and the Sinclair ZX Spectrum. The CP/M files are typical .COM files that anyone can easily run. For the ZX Spectrum, there are two .TAP files, cassette tape images that can be loaded into an emulator, or on real hardware.

The chatbot's AI is limited but nuanced.

• OK - acknowledged, neutral
• WHY? - questioning your premise
• R U? - casting existential doubt
• MAYBE - genuine uncertainty
• AM I? - reflecting the question back

⁉️According to [HarryR], "....it's a different mode of interaction. The terse responses force you to infer meaning from context or ask probing direct yes/no questions to see if it understands or not". The responses are short on purpose, sometimes vague, but there is a personality inferred in the response. Or could this just be a human brain trying to anthropomorphize an AI into a real person?⁉️[ImageSource: Gettyimages]

⁉️Will AI Create The Z80-pocalypse⁉️

The short answer is no, there is nothing to fear! But the Z80 has seen its life threatened during its 50-year lifespan.

👾In 2024, the Z80 finally reached end of life/last time buy status according to a Product Change Notification [PCN] that I saw via Mouser. Dated April 15, 2024, Zilog advised customers that its "Wafer Foundry Manufacturer will be discontinuing support for the Z80 product.…" But fear not, as back in May 2024, one developer was working on a drop-in replacement. Looking at Rejunity's Z80-Open-Silicon repository, I can see that did in fact happen via the Tiny Tapeout project.👾

<https://www.mouser.com/PCN/Littelfuse_PCN_Z84C00.pdf>

<https://github.com/rejunity/z80-open-silicon?tab=readme-ov-file>
🅼🆂🆇 bitsofbasbitsofbas@mstdn.social
2026-02-27

My Z80 Opcode Calculator app on Google Play was updated yesterday. Undocumented opcodes are now included. Test away!

#z80 #msx #zxspectrum #amstrad

play.google.com/store/apps/det

2026-02-27

Frank Wille has updated vasm, a portable assembler for numerous CPUs with various syntax and output modules. Changes in this release:

amiga-news.de/en/news/AN-2026-

#vasm #assembler #amiga #acornComputers #z80 #c16

2026-02-26

I built a computer from scratch! | RC2014 Z80 computer kit assembly.

makertube.net/w/ooCST3MBTXxi7y

2026-02-26

Quazar Graphic OLED - Retro Programming in C and Z80 Assembly on the RC2014

makertube.net/w/aKwxwvtAse5ns3

2026-02-26

Connecting a 1980s Z80 CPU to an Arduino, making a hardware debugger.

makertube.net/w/8GDuWPLP4qpmHJ

linktr.ee/quazarsamcoupe

A quick post to my new LinkTree for links to everything #retrocomputing I do - my main website for all my SAM Coupe development, the two smaller sites for ZX Spectrum hardware and peripherals for RC2014 & compatibles. My other social media accounts and my Tindie and eBay stores.

#samcoupe #zxspectrum #rc2014 #retrogaming #demoscene #indiedev #gamedev #z80

Astatin 🐰 Dev Vtuberastatin@vt.social
2026-02-24

Gameboy Gamedev stream !!

Doing some more small changes to the boss music and then assembly :3

Join me !! twitch.tv/astatinchan/

#vtuber #twitch #stream #gameboy #gamedev #gameboydev #retrocomputing #assembly #Z80 #happyBunny

2026-02-23

AmigaWave: Entrevista a Ben y Mario, miembros del desarrollo del Dandanator Mini para Amstrad CPC

En el episodio #424 de AmigaWave, Ben y Mario presentaron el Dandanator Mini para Amstrad CPC, un periférico pensado para facilitar la carga y distribución de software en equipos retro. Tras el éxito en ZX Spectrum, el dispositivo adopta un diseño inspirado en la Amstrad GX4000, lo que le ha valido el apodo de “GX4000 Mini”.

Se conecta al puerto Edge de los CPC 464, 664 y 6128 (no compatible con la gama Plus) y apuesta por un diseño modular: el lector principal funciona con cartuchos intercambiables que contienen la ROM, abaratando costes y simplificando la distribución. Incluye botones de reset y carga de ROM alternativa, además de un puerto USB-C para conexión directa al PC.

Dispone de 512 KB de memoria Flash para mapear bancos de ROM de forma rápida. Al encender el CPC, muestra un menú instantáneo de selección de software. Si no hay cartucho insertado, el equipo arranca en BASIC gracias a su función pass-through.

El gestor multiplataforma permite crear compilaciones propias y enviar juegos vía USB-C en apenas 2-3 segundos. Incluye base de datos de pokes y opciones de personalización del menú, aunque adaptar imágenes a la paleta CPC requiere trabajo.

El sistema también sirve como plataforma de distribución para nuevos desarrollos homebrew. Se anunciaron recopilatorios clásicos de Dynamic Software y el cartucho “La bolsa del CAT”. Las unidades se venden principalmente en eventos como RetroParla por unos 50€ (CPC), mientras que los cartuchos individuales rondan los 20-25€, destacando su fabricación artesanal mediante carcasas impresas en 3D.

Si quieres más detalles, te aconsejamos que te pases por el canal de Amiga Wave y disfrutes de la entrevista completa que además incluye como siempre, un repaso a las últimas noticias.

https://www.youtube.com/live/XvP7kTrc3dA?si=0P0xeq-GJyyqFF-l

#amstradCpc #aventurasConversacionales #cargaInstantánea #cartridgeSystem #cartuchoROM #DandanatorMini #DynamicSoftware #GX4000Mini #HardwareRetro #homebrew #instantLoading #passThrough #retroComputing #retroHardware #retroinformática #RetroParla #ROMCartridge #sceneRetro #USBCTransfer #Z80
2026-02-23

Chapter 2 of my memoir is up: "The Locked Room."

A computer no one could touch, a lift that never stopped, and the Z80 chip that turned out to be more important than anyone told me.

stevewetherill.substack.com/p/

#GameDev #Memoir #RetroComputing #Z80 #Substack

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst