What is the equivalent lldb command to the one shown below in GDB?
(gdb) set {char}0x02ae4=0x12
The values are arbitrary examples. With GDB I was able to easily edit the byte code at a given hex address while looking at dumps in terminal. Since I upgraded to mavericks I have been trying to fiddle around with lldb a little more but I am having a tough time in a few areas. Perhaps it doesn't even possess this functionality yet..
-s
option:(lldb) memory write 0x02ae4 -s 2 0xFFFF
– Ugh