Pesquisa resultou em 1 ocorrência

por Grinch_
26 Set 2019, 10:17
Fórum: Ajuda
Tópico: [MOON] Get pointer to a string [RESOLVIDO]
Respostas: 1
Exibições: 583
Gênero:

[MOON] Get pointer to a string [RESOLVIDO]

I'm trying to get a pointer to a string variable. In Cleo, it's like

Código: Selecionar tudo

0@v = "TEST" 
0AC7: 1@ = var 0@v offset
how can I do the same thing in moonloader?

------------------------------------------------------------------------------------------------------------------------------

I've tried this,

Código: Selecionar tudo

var = allocateMemory(16)
memory.write(var,"TEST",16)

...

freeMemory(var)
But on the 2nd line, this error occurs,
cannot convert 'string' to 'int64_t [1]'
Thanks in advance ;)

Voltar para “[MOON] Get pointer to a string”