Search
Username:
Password:
Register
I forgot password
Русский English Español
  • Comments
  • Graphics
  • Music
  • Mainpage
  • Stats
  • Authors
  • Parties
  • FAQ
  • Groups
  • Software
    • Demoscene
    • Games
    • System Software
      • Emulator
      • Programming
        • Assembler/Mcode
        • BASIC
        • General
        • Debuggers
        • Tests
        • Programming languages
      • Copy/Backup
      • Fonts/UDGs
      • Graphics
      • I/O Handling
      • Media Admin
      • Sound
      • Print
      • undetermined
      • Telecom/Network
      • Boot
      • General viewers
      • Source Code
      • Operating systems
      • System Utilities
      • Data Compression and Archiving
    • Misc
    • Educational
    • Compilation
    • Press
    • Applications
    • Series
    • Tags
Logo
Mainpage
Software
Graphics
Music
Authors
Parties
Groups
Comments
Countries
About
Русский English Español
Gigascreen mode: Mix
Border: ON
Hidden pixels mode: OFF
I forgot password
Register
Search
Mainpage Software System Software Programming Assembler/Mcode NextBASIC Inline Assembler

Inline Assembler for NextBASIC on ZX Spectrum Next

Name of the program: NextBASIC Inline Assembler
Project website: Purchase
Categories:
System Software / Programming / Assembler/Mcode
Supported languages: English
Legal status: In sales
Authors: taylorza (Coding, Release)
Publication year: 2024
Rating:
4.00
Uploaded by: Xela, 19.02.2024 12:21
Asm

NextBASIC Inline Assembler is a tool designed for the ZX Spectrum Next, allowing developers to incorporate inline assembly code within their NextBASIC applications. By using the .asm command, users can write and execute machine code routines directly from the BASIC environment.

The assembler is initiated by placing the ASM file into the 'dot' folder on the ZX Spectrum Next SD card. This setup allows users to write assembly instructions after the semicolon ; symbol, which are then assembled into memory for execution.

The tool supports a range of assembly instructions and pseudo-operations, such as defining strings, conditional assembly, and handling relocations. It also includes features for error reporting and code optimization, making it a robust solution for assembly language programming on the ZX Spectrum Next.

Version updates have introduced new functionalities like compiling from the command line, improved error messages, and support for various assembly instructions. These enhancements cater to both novice and experienced developers looking to leverage the full potential of the ZX Spectrum Next hardware.

Releases

Title Year Supported languages Release type Release by Hardware Times downloaded Times played
NextBASIC Inline Assembler 2024 English v0.5c Original taylorza
🖥️ ZX Spectrum Next
Purchase
NextBASIC Inline Assembler 2024 English v0.5e Original taylorza
🖥️ ZX Spectrum Next
Purchase
NextBASIC Inline Assembler 2024 English v0.5f Original taylorza
🖥️ ZX Spectrum Next
Purchase
NextBASIC Inline Assembler 2024 English v0.5g Original taylorza
🖥️ ZX Spectrum Next
Purchase
NextBASIC Inline Assembler 2024 English v0.6 Original taylorza
🖥️ ZX Spectrum Next
Purchase
NextBASIC Inline Assembler 2024 English v0.7 Original taylorza
🖥️ ZX Spectrum Next
Purchase
NextBASIC Inline Assembler 2025 English v0.8b Original taylorza
🖥️ ZX Spectrum Next
Purchase
ASM is a .dot command that enables you to write inline assembly code in your NextBASIC application. When you invoke ASM, it scans the code for assembly instructions after the ';' symbol and assembles them into memory. You can then execute the assembled code as any machine code routine that you loaded or poked into memory.

To set up the assembler, you need to copy the 'ASM' file into the "dot" folder in the root of your ZX Spectrum Next SD card. That's all you need to do to get started.

To test the assembler, enter the following program in the NextBASIC editor. NOTE: You must have at least one space after the ';' symbol in lines 30-50. This is explained in more detail later.

10 CLEAR $bff0 : REM Reserve memory for our machine code
20 .asm
30 ;  org $c000
40 ;  ld bc, 42
50 ;  ret
60 PRINT "BC="; USR ($c000)
Run the program and you should see BC=42 printed on the screen. You can change the value in line 40 to something else and run the program again to see the output change.


==================

Version History
---------------

v0.8b - 2025/02/11
- Added support for compiling a source file from the command line
- Fixed parsing of bank when an offset and clear is passed
- Improved file handling error messages
- Implemented buffered reading for assembling from files (directly and includes)

v0.8a - 2024/09/30
- Errors now report the sub-statement that has the error rather than just the line
- New pseudo ops
-  DISPLAY: displays messages during assembly. Supports formatting 
    /D - decimal, /H - hexadecimal, /B - binary, /C - ASCII Character
-  DC: define string with high bit set for last character
-  DZ: define string with an auto appended null terminator

v0.8  - 2024/9/08
- Added support for instructions using IXL, IXH, IYL and IYH 

v0.7c - 2024/9/07
- ORG defaults to be sync'd with the BANK offset (Matt Neale)

v0.7b - 2024/8/11
- Added checks for wrap around of PC at the 64K boundary or at the 16K boundary when assembling to a BANK
- Added 'VAR' pseudo op that allows the value to vary between phases
- Updated BRK to emit the new CSpect breakpoint "$fd, $00" 

v0.7a - 2024/6/19
- Added support for INCLUDE
- Moved error messages to banked memory to free up more memory for the assembler

v0.7 - 2024/6/14
- Expressions now honour operator precedence including parenthesis
- New operators <=, >=, ! (logical not), &&, ||

v0.6 - 2024/5/31
- improved parsing of DB/DW pseudo ops
- support for generating NEX files
- BANK accepts an additional argument to indicate if the bank should be cleared before assembling into it
- Added left shift '<<' and right shift '>>' operators

v0.5g - 2024/05/10
- Added support for anonymous labels 
- Added support for multiple instructions per line using ':' separator

v0.5f - 2024/04/21
- Added support for label offsets to make self modifying code easier
- Code optimization
- Moved expression evaluator out of the DOT Command address space

v0.5e - 2024/03/24
- FIXED: Assembler does not error on loading registers other than 'A' with the content of a register pair (Simon N. Goodwin)
- Labels maxlength increased from 11 to 15
- Support scoped labels using '.' prefix to define a scoped label. Total length of scope and local name including the '.' must not exceed 15

v0.5d - 2024/02/25
- Fixed a bug with the support for integer variables (https://gitlab.com/thesmog358/tbblue/-/issues/112)

v0.5c - 2024/02/11
- Added not-equal '<>' operator (Simon N. Goodwin)
- FIXED: Labels not excluded from conditional assembly (Simon N. Goodwin)
- FIXED: ALIGN error if the adjustment is only 1 byte
- Report error when a symbol value changes between passes (Simon N. Goodwin)
- Improved error reporting

v0.5b - Not released
- FIXED: Pseudo-ops not excluded from conditional assembly (Simon N. Goodwin)

v0.5a - 2024/01/28
- Fixed error reporting with nested IF

v0.5 - 2024/01/28
- New pseudo-ops to support generating relocations for drivers
-- RELOC_START/RELOC_END mark the start and end of a relocatable code section
-- RELOC_TABLE emits the relocation table
-- RELOC_COUNT returns the number of relocations that have been generated
- Conditional assembly
-- IF/ELSE/ENDIF nested up to seven levels deep
- Plenty of little bug fixes

v0.4d - 2024/01/21
- New pseudo-ops
-- NBRK trigger hardware breakpoint, short for nextreg 2,8
-- ALIGN align code/data to the specified byte boundary
- New bitwise operators
-- & bitwise AND
-- | bitwise OR
- Optimizations 
-- 16 bit multiplier using hardware optimizations from Ped7g

v0.4c - 2024/01/14 
- Fixed issue with LD (lbl), r/rp that was introduced with v0.4

v0.4b - 2024/01/14
- Fixed issue with z80n instructions not expecting a comment on the line

v0.4 - 2024/01/14
NOTE: This release contains a breaking change regarding hex and binary numbers
- Dropped the suffix notation for hex and binary numbers
-- $ prefix for hex
-- % or @ prefix for binary
- Added support for getting and setting BASIC integer variable during assembly
--   LD b, %a        ; Get the value of the BASIC integer variable at time of assembly
--   LET %a = sym    ; Assign the value of 'sym' to the BASIC integer variable %a
- Moved symbols to dedicated banks so now you can have many more symbols in your code
- Refactored parser to reduce size and improve error handling
- Fixed many bugs :)

v0.3b - 2024/01/06
- Relaxed the requirement to have a space after an OP-code when the next character is clearly not part of the name
- Improved DS, now fills memory/file with 0s
- https://github.com/taylorza/zxn-inlineasm-doc/issues/3
-- Fixed parsing of IN A, (C) 
-- Fixed expression error message for operators other than +/- prefixing the expression

v0.3a - 2023/12/31
- Fixed expressions for LD r, nn class ops

v0.3 - 2023/12/31
- Code size optimizations
- Added support for 'OUTPUT' directive/psuedo-op which allows the assembled code to be directed to
  a file rather than directly to memory

v0.2 - 2023/12/27
- Fixed parsing issue that allowed spaces between the characters of HL, IX, IY 
  registers
- Support specifying the target bank for the generated code
  BANK n[,o] where 'n' is the target bank number and 'o' an optional offset into
  the bank. When a bank is specified the ORG address is used for address 
  calculations. Typicall this should remain at the default of $c000
- Support assembling code that has been banked using 'BANK... LINE...'

v0.1 - 12/25/2023 Christmas Edition
- Initial public release

Leave a comment

Please perform a quick registration before leaving a comment

Votes history

Nickname Votes Date
emook 5 27.02.2024 23:02
creator 5 19.02.2024 14:42
Your very own ZX Spectrum radio
How to remove ads?
Latest comments
abelenki: всё, разобрался:

https://zxart.ee/eng/software/pressa/disk-magazine/-mi/

будем читать.
abelenki: очень круто! а кто автор?
ax34: Edit: ее бы отдельно выложить в раздел "Графика"
ax34: А эта картинка (с домами) есть отдельно без менюшки?
Kurashi Nikkeru: ...вот она где, полная версия Syringe
lzb: Вот это музыкант так музыкант - Дмитрий Ганин, художественный руководитель и главный дирижер Камерного оркестра Государственной филармонии Кузбасса.
Kurashi Nikkeru: Двачую.
Xela: Что уникального в Спектруме в свете текстовых адвентюр?
toSeva: Откуда у автора такая нелюбовь к текстовым адвентюрам. Спектрум является уникальной платформой для продвижения этого жанра.
Kurashi Nikkeru: *laughs in 6eccuL 6удущего*
*laughs in Summermilk*
See all commentsSee all comments
Latest votes
creator 5 main menu
abelenki 5 Ǝ-МᏩΛꞨᏆИ
Beaver 5 On way to sea
Beaver 5 Воину-освободителю - слава!
Beaver 5 sea
Beaver 5 Valley
abelenki 5 main menu
WattTack 4 Come With Me
WattTack 4 The End
WattTack 5 Spekku-man (loading screen)
WattTack 5 Amaurote (Remix)
WattTack 5 Lord of the rings v.1
WattTack 5 Planetary Metropolis
WattTack 4 Dragon
WattTack 5 ZXPSX
WattTack 5 Let's rock the party
WattTack 5 Shark ingame3
WattTack 4 Characters design
WattTack 5 my old ruined bones
WattTack 5 Cafe'2019