Apps/tube: Improved code style and readability #134
Reference in New Issue
Block a user
No description provided.
Delete Branch "fixed-tube-demo-codestyle"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@@ -0,0 +88,4 @@
loop ROTATE
fld st1
db 0xdc,0xc8 ;fmul st0,st ?
Is this still relevant?
fasm generates a different
D8 C8
opcode. But in fact, if i = 0, then it is the same thing. It's just that fasm and nasm generate different instructions:See: https://shell-storm.org/x86doc/
@@ -0,0 +90,4 @@
fld st1
db 0xdc,0xc8 ;fmul st0,st ?
fld st1
db 0xdc,0xc8 ;fmul st0,st ?
Is this still relevant?
#134 (comment)
@@ -0,0 +118,4 @@
mov al,-48
STORE_1:
; add al,[ebx+esi+0x80000]
Is this really necessary?
#134 (comment)
Это был код, который возможно включал в программе какой-либо режим работы. Оставил на всякий случай, может кто-нибудь поймет что оно раньше делало.
@@ -0,0 +183,4 @@
ret
align 4
db 41,0,0xC3,0x3C
@IgorA What is this for?
Судя по коду это 4-х байтное число с плавающей точкой, потому как оно грузится в fpu инструкции. Но из это-го же места в другом месте кода грузится также 2 байта. Потому однозначно не понятно как его сделать или перевести во float или оставить как 4 отдельных байта.
It's clear. Thank you
Add
Copyright (C) 2001 Miloš Bazelides <baze@stonline.sk>
c77ec910a2
to61277f8822