Skip to content

Commit 55a2bbe

Browse files
committed
Fix README.md to avoid a GitHub bug that causes inline SVG images to display with incorrect width in WebKit.
1 parent 82ff52b commit 55a2bbe

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## Introduction
1111

12-
<img src="https://zxe.io/software/Z80/assets/images/Z80.svg" width="256" align="right">
12+
<img src="https://zxe.io/software/Z80/assets/images/Z80.svg" height="72" width="256" align="right">
1313

1414
The [Z80 library](https://zxe.io/software/Z80) implements a fast, small and accurate [emulator](https://en.wikipedia.org/wiki/Emulator) of the [Zilog Z80](https://en.wikipedia.org/wiki/Zilog_Z80). It emulates all that is known to date about this CPU, including the undocumented behaviors, [MEMPTR](https://zxpress.ru/zxnet/zxnet.pc/5909), [Q](https://worldofspectrum.org/forums/discussion/41704) and the [special RESET](http://www.primrosebank.net/computers/z80/z80_special_reset.htm). It also has the honor of having been the first open-source project to provide full emulation of the interrupt mode 0.
1515

@@ -307,7 +307,7 @@ Frank Cringle's _Z80 Instruction Set Exerciser_ attempts to execute every Z80 op
307307

308308
## Installation
309309

310-
### <sub><img src="https://zxe.io/software/Z80/assets/images/debian-icon.svg" height="24"></sub> Debian, <sub><img src="https://zxe.io/software/Z80/assets/images/ubuntu-icon.svg" height="24"></sub> Ubuntu and other Debian-based Linux distributions
310+
### <sub><img src="https://zxe.io/software/Z80/assets/images/debian-icon.svg" height="24" width="20"></sub> Debian, <sub><img src="https://zxe.io/software/Z80/assets/images/ubuntu-icon.svg" height="24" width="25"></sub> Ubuntu and other Debian-based Linux distributions
311311

312312
First, add the `zxe` repository and update the package index:
313313

@@ -331,7 +331,7 @@ In case you need to build software that requires the Z80 library, install the de
331331
sudo apt install libz80-dev
332332
```
333333

334-
### <sub><img src="https://zxe.io/software/Z80/assets/images/gentoo-icon.svg" height="24"></sub> Gentoo
334+
### <sub><img src="https://zxe.io/software/Z80/assets/images/gentoo-icon.svg" height="24" width="24"></sub> Gentoo
335335

336336
First, add and sync the [`zxe`](https://github.com/redcode/zxe-gentoo-overlay) overlay:
337337

@@ -346,13 +346,13 @@ Then install the library:
346346
emerge emulation-libs/z80
347347
```
348348

349-
### <sub><img src="https://zxe.io/software/Z80/assets/images/homebrew-icon.svg" height="24"></sub> Homebrew
349+
### <sub><img src="https://zxe.io/software/Z80/assets/images/homebrew-icon.svg" height="24" width="16"></sub> Homebrew
350350

351351
```shell
352352
brew install redcode/zxe/z80
353353
```
354354

355-
### <sub><img src="https://zxe.io/software/Z80/assets/images/windows-icon.png" height="24"></sub> Windows
355+
### <sub><img src="https://zxe.io/software/Z80/assets/images/windows-icon.png" height="24" width="24"></sub> Windows
356356

357357
Pre-built binaries for Windows are available on the [download](https://zxe.io/software/Z80/download) page.
358358

@@ -562,7 +562,7 @@ cmake --build . --config Release
562562
cmake --install . --config Release --strip
563563
```
564564

565-
<sup>**[<sub><img src="https://zxe.io/software/Z80/assets/images/sh.svg" height="14"></sub> build-and-install-Z80.sh](https://zxe.io/software/Z80/scripts/build-and-install-Z80.sh)**</sup>
565+
<sup>**[<sub><img src="https://zxe.io/software/Z80/assets/images/sh.svg" height="14" width="19"></sub> build-and-install-Z80.sh](https://zxe.io/software/Z80/scripts/build-and-install-Z80.sh)**</sup>
566566

567567
## Running the tests
568568

@@ -614,7 +614,7 @@ cmake --build . --config Release
614614
ctest --verbose --build-config Release
615615
```
616616

617-
<sup>**[<sub><img src="https://zxe.io/software/Z80/assets/images/sh.svg" height="14"></sub> build-and-test-Z80.sh](https://zxe.io/software/Z80/scripts/build-and-test-Z80.sh) &nbsp;&nbsp; [<sub><img src="https://zxe.io/software/Z80/assets/images/bat.svg" height="14"></sub> build-and-test-Z80.bat](https://zxe.io/software/Z80/scripts/build-and-test-Z80.bat)**</sup>
617+
<sup>**[<sub><img src="https://zxe.io/software/Z80/assets/images/sh.svg" height="14" width="19"></sub> build-and-test-Z80.sh](https://zxe.io/software/Z80/scripts/build-and-test-Z80.sh) &nbsp;&nbsp; [<sub><img src="https://zxe.io/software/Z80/assets/images/bat.svg" height="14" width="19"></sub> build-and-test-Z80.bat](https://zxe.io/software/Z80/scripts/build-and-test-Z80.bat)**</sup>
618618

619619
## Integration
620620

@@ -917,7 +917,7 @@ Many thanks to the following individuals (in alphabetical order):
917917

918918
Copyright © 1999-2025 Manuel Sainz de Baranda y Goñi.
919919

920-
<img src="https://zxe.io/software/Z80/assets/images/lgplv3.svg" width="160" align="right">
920+
<img src="https://zxe.io/software/Z80/assets/images/lgplv3.svg" height="70" width="160" align="right">
921921

922922
This library is [free software](https://www.gnu.org/philosophy/free-sw.html): you can redistribute it and/or modify it under the terms of the [GNU Lesser General Public License](https://www.gnu.org/licenses/lgpl-3.0.html) as published by the [Free Software Foundation](https://www.fsf.org), either version 3 of the License, or (at your option) any later version.
923923

0 commit comments

Comments
 (0)