MASM string reversal
问题 Alright, Im going about this, with what is probably a really complicated solution, but its the first thing that popped into my head. I need to write an assembly language program that reverses a "source" string, without using a "target" string ( a temp variable ) .. this is my attempt at it. INCLUDE Irvine32.inc .data source BYTE "This is the source string", 0 count DWORD ? .code main PROC mov ecx, LENGTHOF source L1: mov count, ecx ; save our outer loop count mov al,[source+0] ; get the first