Sorry your browser is not supported!

You are using an outdated browser that does not support modern web technologies, in order to use this site please update to a new browser.

Browsers supported include Chrome, FireFox, Safari, Opera, Internet Explorer 10+ or Microsoft Edge.

Newcomers DBPro Corner / P.S please read manual before posting

Author
Message
Andrew
21
Years of Service
User Offline
Joined: 23rd Aug 2003
Location: United Kindom (what makes it important?)
Posted: 20th Sep 2003 20:35
You will learn better if you look through your manual, basically i didn't undersatnd that much about the attacking commands, but after learning all the codes i can basically do anything now.
It's pretty easy, so look in the manual.

(I admit i cant yet do everything, but not far from it now
Thought i would tell you because you can save time

I'm still learning codes, starting my first game, but i worry forgetting the codes i now know.
Darksyde
21
Years of Service
User Offline
Joined: 13th Sep 2003
Location: Staffordshire, UK
Posted: 21st Sep 2003 01:21 Edited at: 21st Sep 2003 01:22
ooo...k....

"codes" hehe
John H
Retired Moderator
21
Years of Service
User Offline
Joined: 14th Oct 2002
Location: Burlington, VT
Posted: 21st Sep 2003 06:15
Lol the codes heheh

Yes reading the manual is always a good thing to do

Current Project: Eternal Destiny
Porting all files to my new computer
zzabb
21
Years of Service
User Offline
Joined: 25th Apr 2003
Location: Seattle, USA
Posted: 21st Sep 2003 08:44 Edited at: 21st Sep 2003 08:44
meez learnin the codes too (-: (-: (-:

My advice is free -
unfortunately you get what you pay for (-:
Scraggle
Moderator
21
Years of Service
User Offline
Joined: 10th Jul 2003
Location: Yorkshire
Posted: 21st Sep 2003 17:20
Hey Andrew

What should I do with this egg now that I have finished sucking it?
haggisman
22
Years of Service
User Offline
Joined: 26th Aug 2002
Location: United Kingdom
Posted: 21st Sep 2003 17:25
Make an omelette?

Defying the convention of an upright avatar since 1985
Andrew
21
Years of Service
User Offline
Joined: 23rd Aug 2003
Location: United Kindom (what makes it important?)
Posted: 21st Sep 2003 21:25
I dont know, what do you want to do with the egg?

I'm still learning codes, starting my first game, but i worry forgetting the codes i now know.
HardBoot
21
Years of Service
User Offline
Joined: 10th Sep 2003
Location: Earth
Posted: 25th Sep 2003 12:12
codes=commands

sync
orv
21
Years of Service
User Offline
Joined: 9th Sep 2003
Location: Chicago, IL
Posted: 25th Sep 2003 22:45
Shall I ramble on abit?

It's "code" to codes. Just like it's "sheep" not "sheeps."

Codes could be used to refer to something like: "Five secret codes needed to be entered into the keypad to unlock the safe!"

A command is not a code, code is made up of commands.

Why be anal about verbage?
Computers are literal, and programmers that are literal know how to write good computer programs.

Example:
You don't call the MBytes on a hard drive memory.
You don't call the MBystes of your RAM storage.

In away they're the same thing. But programmer's who've been around while know right away normally that if you say "storage" you mean some sort of media storage for data such as a hard drive or floppy disk. Programmers know also if you say "memory" you're talking about the computer's RAM not the harddrive.

The more specific your verbage is, the better. The better others will understand what you're trying to say. And the more likely the computer won't choke on mal-formed syntax or improperly structured code.

At least I might misspell a work in this post and folks would be able to figure out what I was saying, the compiler is not so forgiving.

...end of my rambling!
MagiKnight
21
Years of Service
User Offline
Joined: 20th Sep 2003
Location:
Posted: 26th Sep 2003 12:17 Edited at: 26th Sep 2003 12:46
Quote: "A command is not a code, code is made up of commands."


Ummm yes it is, when you say:

Print "hello world"

your still sending code to the computer because unless somehow they changed the x86 opt codes "print" means nothing to the CPU so there is still code being read even if you only say Print and in dos it looks somehting like this ....

.Model Tiny
.Stack
.Data
String$ DB "Hello World", "$"
.Code

START:
MOV AX,String$ SEG
MOV DS,AX
MOV DX,OFFSET String$
MOV AH,09
INT 21H
MOV AX, C400H
INT 21H
END START

now if you want me to go even further below this is just numbers
plane binary code that only consests of 1's and 0's and binary has no commands it has condictons (true = 1 ,false = 0) so commands are still code no matter how you look at it.


Quote: "You don't call the MBystes of your RAM storage."


So if I made a RAM Drive what would you call it?...LOL
You can so call it storage, temperary storage like a RAM drive
or when you save somthing to an array your storing it are you not?

MMMMMM Low level programmimg...
John H
Retired Moderator
21
Years of Service
User Offline
Joined: 14th Oct 2002
Location: Burlington, VT
Posted: 26th Sep 2003 14:37
Gimme da codes! <Joke

Current Project: Eternal Destiny
We need a texture artist!
If your interested email me - Johnrocs@aol.com

Login to post a reply

Server time is: 2024-09-21 01:10:00
Your offset time is: 2024-09-21 01:10:00