Recent posts

#1
and how to reverse it

Dr Patrick Holford
Dr. John Campbell

#2
OxygenBasic Examples / Re: Msgbox asm
Last post by Charles Pegge - Today at 09:16:57 PM
Here's a trade secret:

You can reveal the Assembly code of any piece of Oxygen by using the #show command:

it shows the intermediate code followed by Asm code

int a,b,c
#show {
a=b+c
mbox str(a)
}

The code can also be stored directly into a text file:
int a,b,c
#show  "t.txt" {
a=b+c
mbox str(a)
}
#3
OxygenBasic Examples / Re: Msgbox asm
Last post by Frank Brübach - Today at 07:01:23 PM
Hi Charles again..

How I can add correct two numbers in 64 Bit Mode in this msgbox example?  Thx in advance , Frank

' 64 bit x86
'
$ FileName "test64add2number.exe"
#include "$\inc\RTL64.inc"

byte val1
byte val2
int result
   
    val1=4
    val2=6 '

     '' mov eax,val1 
     '' mov eax,val2  ''multiply eax by ebx  "
     '' mul val1 'ebx 
     '' mov result,eax


'------------------ //
     mov rax,rdi
     add rax, val2 
     'add val1 'rax,
     mov rdi,val1
     mov result,rax
'------------------ //

zstring tit[]="64Bit OxygenBasic"
zstring msg[]="Hello dear Animal World! " + str(result)

'' oxygen 64 bit
''
sub  rsp,40h
mov  r9,  0       
lea  r8,  tit   
lea  rdx, msg   
mov  rcx, 0
call messagebox       
add  rsp, 40h
''
'' output: Hello dear Animal World! 24

#4
PowerBasic Adventures / Power Basic forum maybe going ...
Last post by Paul Yuen - Today at 06:10:22 PM
Hi
Please take a look at https://forum.powerbasic.com/forum/announcements-articles-and-support-faqs/frequently-asked-questions/833672-powerbasic-website-and-forums#post833672

PB forum may be going dark very soon, as there is no management response to members' queries about future
stake of the PB forum.
#5
OxygenBasic Examples / Re: Type question
Last post by Charles Pegge - Today at 04:42:28 PM
Hi Frank,

I could not make sense of your example but in any case, you will need to specify the allocated char count of the zstring

type aStruct
    a as long
    b[16] as zstring
end type

#6
Code to share / Re: sizeof example
Last post by Frank Brübach - Today at 03:53:52 PM
Here is a little sizeof example

Print SizeOf(Byte) ' returns 1

Type mybar
    a As Integer '4
    b as float '4
    c as long '4
    d As Double '8
    e as ulong '4
    f as short '2
    g as byte '1
End Type

dim myfoo as mybar
print SizeOf(myfoo) ' returns 32
 
#7
OxygenBasic Examples / Type question
Last post by Frank Brübach - Today at 03:24:03 PM
Hello Charles,

Can I add a value and a String with a Type in a function?

type aStruct
    a as long
    b as zstring
end type

function one_add(long a,b) as long
dim st as aStruct

st.a = 5
st.b = "Thor"
return a+b

end function

function two_add(long a,b) as long
dim st as aStruct

st.a = 5
st.b = "Thor"
return st.a+str(st.b)

end function

print "one_add: " + one_add(2,4) ' result 6
print "two_add: " + two_add(2,4) ' result 50 ' ???

#8
OxygenBasic Examples / Re: CByte
Last post by Charles Pegge - Yesterday at 05:44:54 PM
some signed byte values:

0x7f -->  127
0x80 --> -128
0x81 --> -127
...
0xfe --> -2
0xff --> -1

0x104 modulo 0xff --> 4
#9
The entire food pyramid on planet Earth is cruel, unfortunately.


Some more stories:

strange Humanoids Around the World: Ten Eyewitness Accounts

Preston Dennett
20 apr 2024



Twelve Amazing Humanoid Encounters

Preston Dennett
18 may 2024

#10
Code to share / Re: halProment 64 Bit Test
Last post by Frank Brübach - Yesterday at 02:19:29 PM
Finally the big step to 64 Bit architecture
Thanks Charles for His great rtl32.inc and rtl64.inc Files :-)

All examples you can find in *.rar folder below
If you have any questions please ask thx, frank

'' -- halProment Basic 64 bit test, 26-5-24, 29-05-24, by frank bruebch
'' -- you must compile this example with menu compile/quickrun produces an exe file
''

$ FileName "test64-2.exe"
#include "$\inc\pro64.inc" ''

Declare Function MessageBox Lib "user32.dll" Alias "MessageBoxA" (ByVal hwnd As Long, ByVal lpText As String, ByVal lpCaption As String, ByVal wType As Long) As Sys

byte val1
byte val2
int result 
   
    val1=4
    val2=6 '

    'mov eax,val1 
    mov eax,val2  ''multiply (or add) eax by ebx  "
    'mul val1 'ebx
    add eax,5  '' here add 5
    mov result,eax

zstring tit[]="HalProment Basic 64 bit"
zstring msg[]="Hello dear Animal World! " + str(result)

'' halProment Basic 64 bit
''

sub  rsp,40h
mov  r9,  0     
lea  r8,  tit 
lea  rdx, msg 
mov  rcx, 0
call messagebox     
add  rsp, 40h
''
''
'' output: Hello dear Animal World! 11 (add) ' 24 (multiply)
''

#ifdef mode64bit
#print "Producing 64-bit code output"
print "Producing 64-bit code output"
#else
#print "Producing 32-bit code output"
#endif

'' result: "Producing 64-bit code output" ' all ok :-)


PS you can Download the latest Update under GitHub too