update docs

This commit is contained in:
Irmen de Jong 2020-12-22 16:44:05 +01:00
parent 44b8291540
commit 85abf4d123
2 changed files with 5 additions and 5 deletions

View File

@ -10,10 +10,10 @@ Prog8 documentation - |version|
What is Prog8? What is Prog8?
-------------- --------------
This is an experimental compiled programming language targeting the 8-bit This is a compiled programming language targeting the 8-bit
`6502 <https://en.wikipedia.org/wiki/MOS_Technology_6502>`_ / `6502 <https://en.wikipedia.org/wiki/MOS_Technology_6502>`_ /
`65c02 <https://en.wikipedia.org/wiki/MOS_Technology_65C02>`_ / `6510 <https://en.wikipedia.org/wiki/MOS_Technology_6510>`_ /
`6510 <https://en.wikipedia.org/wiki/MOS_Technology_6510>`_ microprocessor. `65c02 <https://en.wikipedia.org/wiki/MOS_Technology_65C02>`_ microprocessors.
This CPU is from the late 1970's and early 1980's and was used in many home computers from that era, This CPU is from the late 1970's and early 1980's and was used in many home computers from that era,
such as the `Commodore-64 <https://en.wikipedia.org/wiki/Commodore_64>`_. such as the `Commodore-64 <https://en.wikipedia.org/wiki/Commodore_64>`_.
The language aims to provide many conveniences over raw assembly code (even when using a macro assembler), The language aims to provide many conveniences over raw assembly code (even when using a macro assembler),

View File

@ -11,8 +11,8 @@ Prog8 targets the following hardware:
Currently there are two machines that are supported as compiler target (selectable via the ``-target`` compiler argument): Currently there are two machines that are supported as compiler target (selectable via the ``-target`` compiler argument):
- 'c64': the well-known Commodore-64, premium support - 'c64': the well-known Commodore-64
- 'cx16': the `CommanderX16 <https://www.commanderx16.com/>`_ a project from the 8-Bit Guy. Support for this is still experimental. - 'cx16': the `CommanderX16 <https://www.commanderx16.com/>`_ conceived by the 8-Bit Guy.
This chapter explains the relevant system details of these machines. This chapter explains the relevant system details of these machines.