0

I'm using Dirty Joe to manipulate this code bellow

SetAttribute localSetAttribute = new SetAttribute(140, "B", beeperVolume.getValue(), 0);

So I use Dirty Joe to change number to push. On code editor I only found edit opcode which only edit the memory address.

How I can modified number to push instead of memory address? Thanks

Yohanim
  • 3,319
  • 9
  • 52
  • 92

1 Answers1

0

It's not the memory address. To change the number 140 with 150, for instance, replace the last by 8C with 96:

enter image description here

Maurice Perry
  • 9,261
  • 2
  • 12
  • 24