@Hutch: In a post in the Campus, you said
Quote from: hutch-- on August 09, 2022, 01:20:09 PM
There is a response to the "no comments" brigade, real men[tm] write in binary. In the right context, binary is a ton of fun to write but its application is reasonably limited.
I'm curious to know what you mean by "binary" here. I'm imagining something like this:
01010111 ; PUSH EDI
1000110101111101 10110100 ; LEA EDI,[LOCAL.19]
10110001 01001100 000000 00000 ... 00000 ; MOV ECX,4C
0011001111000000 ; XOR EAX,EAX
11110011:10101010 ; REP STOSB
01011111 ; POP EDI
but that can't possibly be right. Who would ever code like that? and why?
So what is "binary" assembler?
I'm thinking he meant Byte Coding e.g.,
... header here
start:
db 90h. ; nop
db 90h. ; nop
db 0C3h. ; ret
end start
Using the hexadecimal op codes...
Otherwise getting the op codes then translating to binary would be rather tedious and could get very cumbersome and of course error prone.
I'm on my iPad right now otherwise I'd give a better example...
Darn auto correct doesn't like the mnemonics
Direct binary coding would be an exercise in futility, lol
Of course you could make a very large set of macros to help you accomplish that feat. But would still be too time consuming and too much effort.
Quote
but that can't possibly be right. Who would ever code like that? and why?
Back in the day from what I understand the only way to code was 1's and 0's. No whiz bang gui's
And I assume was quite complicated. Some of the older old timers may remember this...
Welll, I remember doing things like that back in the bad ol' days of DOS 16-bit programming. Was looking through some old include files when I came across these:
@CS MACRO
DB 2EH
ENDM
@DS MACRO
DB 3EH
ENDM
@ES MACRO
DB 26H
ENDM
@SS MACRO
DB 36H
ENDM
(Heh; remember segment overrides?* Good times ...)
But why would you need to do that nowadays?
* I can't remember the last time I even thought about using a segment register. So nice not having to deal with them in a flat address space!
Quote from: quarantined on August 10, 2022, 05:09:20 AM
Quote
but that can't possibly be right. Who would ever code like that? and why?
Back in the day from what I understand the only way to code was 1's and 0's. No whiz bang gui's
And I assume was quite complicated. Some of the older old timers may remember this...
Well, there was "front-panel" programming, where you entered your program (byte-by-byte, or maybe word-by-word) by flipping switches where each switch was a bit in the byte/word. (Waaaaay before my programming time.)
https://hackaday.com/2020/10/30/altair-front-panel-tutorials/ (https://hackaday.com/2020/10/30/altair-front-panel-tutorials/)
Quote
But why would you need to do that...
I'd imagine for fun or out of boredom. I never did any 16 bit programming, thankfully.
Where you have a reason to write binary, hex notation does the job OK. x86 x64 have the base unit of a BYTE and bit values are done via masking so BYTE is the base unit for writing binary code in x86 x64. There are occasions where you have to produce binary output and its no big deal to do this in a sequence of hex notation. Its simply the reverse of reading hex data in a hex editor, something that is an amazingly useful tool.
Can you post an example of that type of coding? I'm curious.
Quote from: quarantined on August 10, 2022, 05:13:23 AM
Quote
But why would you need to do that...
I'd imagine for fun or out of boredom. I never did any 16 bit programming, thankfully.
I did a lot of 16-bit stuff. DOS programs where all the OS functions were accessed through
INT 21H. Actually a very good way to learn assembler.
I love reading about these old primitive computer systems (https://hackaday.com/2020/10/30/altair-front-panel-tutorials/).
This is what computing will look like once again in the post-zombie apocalypse era. People with old 8080s and Z80s and perfboards and soldering irons and diode matrices ... Mad Max computing. "Macro assembler"? Hah!
Hi NoCforMe,
One possible case for binary code could be writing self modifying code.
Yes, I forgot about that.
Is that allowed in Win32 programs? Does the .code section allow writes?
I hope I never have to do that in one of my programs ...
Quote from: NoCforMe on August 10, 2022, 05:19:19 AM
Can you post an example of that type of coding? I'm curious.
here is old example of use hexadecimal prefixes in macros so older ML 6.14 can use newer mnemonics/opcodes it originally didnt supported
http://www.masmforum.com/board/index.php?topic=973.0 (http://www.masmforum.com/board/index.php?topic=973.0)
this is just examine opcodes and find differences in prefix that is the difference between
MULPS (SSE) and MULPD (later SSE2 instruction set)
Well, so those are pretty much equivalent to the segment-override macros I posted here.
Quote from: NoCforMe on August 10, 2022, 06:00:47 AM
Is that allowed in Win32 programs? Does the .code section allow writes?
You can mark the code section as executable, readable and writeable :
\masm32\bin\link.exe
.
.
/SECTION:name,[E][R][W][S][D][K][L][P][X]
Quote from: NoCforMe on August 10, 2022, 06:00:47 AM
I hope I never have to do that in one of my programs ...
Comes in handy sometimes, but most AV software would screeeeam FOUL and not allow you to run it.
Quote from: quarantined on August 10, 2022, 06:40:13 AM
Quote from: NoCforMe on August 10, 2022, 06:00:47 AM
I hope I never have to do that in one of my programs ...
Comes in handy sometimes, but most AV software would screeeeam FOUL and not allow you to run it.
Sheesh, I have enough goddamn trouble with AVG as it is.
A really annoying thing with AVG: if you download a zip file and copy an executable out of it to another folder and run it, no problemo. But if you try to run the .exe from the zip archive, AVG holds up execution and scrutinizes the code. Which takes a full minute or more, until it figures out that there's nothing malignant in the code ...
Quote from: NoCforMe on August 10, 2022, 06:21:26 AM
Well, so those are pretty much equivalent to the segment-override macros I posted here.
well one of these are good old prefix used for change mov ax,something to mov eax in 16bit Dos mode making it one byte bigger,while in 32bit mode its opposite mov eax,something to mov ax,
... except that EAX didn't exist in 16-bit DOS days ...
Quote from: NoCforMe on August 10, 2022, 06:00:47 AM
Is that allowed in Win32 programs? Does the .code section allow writes?
I hope I never have to do that in one of my programs ...
Recent example (http://masm32.com/board/index.php?topic=10137.msg110625#msg110625)
So if I understand that example correctly, you're not actually writing anything into the code segment; you're pushing instructions on the stack and executing them there, right? So I guess it's self-modifying, but to me that's always meant actually modifying code in the code segment.
Anyhow, pretty clever there. I guess you could even handle code that's longer than 32 bits with multiple PUSHes, right? I'd call what you're doing here "on-the-fly stack subroutines".
Quote from: NoCforMe on August 10, 2022, 09:28:16 AMI guess you could even handle code that's longer than 32 bits with multiple PUSHes, right?
Sure.
You can do it either way, .data section or local and load with mnemonics or even set BYTE arrays, depends what you want to do and personal preference.
There is a reason why 64-bit binary is no good for MASM.
Visual Studio doesn't support more than thirty-something characters. It was having absolutely none of it and its extremely annoying. Binary is so much easier.
:biggrin:
The simple solution is to use something else. VS is basically for C/C++ but it does supply ML64.EXE. Use another editor for 64 bit assembler.
ML64.EXE is a bit "agricultural" but it is more than capable in producing 64 bit Windows portable executable code.