Search found 2 matches

by Christophlex
Thu Nov 02, 2023 12:24 am
Forum: Development Tools
Topic: File based Assembler
Replies: 39
Views: 43432

Re: File based Assembler

Thanks for getting back to me. Yes, I'm using .byte just fine, but let's say I wanted to create 64 bytes, but I don't have values immediately to populate them with. I could .byte $00,$00,$00,$00,$00... 64, but I wanted to know if there was a way to use it to create 64 bytes (or any number) without h...
by Christophlex
Wed Nov 01, 2023 2:47 pm
Forum: Development Tools
Topic: File based Assembler
Replies: 39
Views: 43432

Re: File based Assembler

Fantastic. I just got back into x86 assembly after decades away, and this has been perfect. One question: Is it possible to declare a bunch of bytes easily? As it is now, if I wanted to declare 4 bytes, I could do: .BYTE $01,$02,$03,$04 Are there any directives that will do a .BYTE(x) = 0. That is, ...