AI
Artificial intelligence (AI) is a branch of computer science and engineering that deals with intelligent behavior, learning, and adaptation in machines. Research in AI is concerned with producing machines to automate tasks requiring intelligent behavior. Examples include control, planning and scheduling, the ability to answer diagnostic and consumer questions, handwriting, speech, and facial recognition. As such, it has become an engineering discipline, focused on providing solutions to real life problems, software applications, traditional strategy games like computer chess and other video games.
Language
Any
Platform
License
Any
If you search GOOGLE - you will find a lot of IDEs. I am developing one right now (Object-Oriented Assembler), but work goes slow.
Hi all,
I'm trying to write a code that will locate information in Sheet 1 and search for that same information in Sheet 2, then pull a different bit of information from Sheet 2 and place it back...
: I do not use TASM anymore. Do you know how to write a
: simple TASM program which prints simple "Hello!"? If you do, then
: start with that. Then add some user input. Also, search this board...
I do not use TASM anymore. Do you know how to write a simple TASM program which prints simple "Hello!"? If you do, then start with that. Then add some user input. Also, search this board for code -...
I am a newbie to Excel VBA and I am trying to search this column of text using an input string. I don't know the best way to declare an existing column of strings so that I can search each cell one...
: Is there any small C/C++ compiler that is below 1MB amd the look
: just like the edit.exe program of MSDOS ?
Search for Turbo C via google. Its a DOS real mode compiler; hence is limited to...
: : Hi all.
: :
: : I have been writing a connect four game.
: :
: : So far I have defined the board using a 2D Array.
: :
: : Because I have no graphical programming experience, this is...
: Hi all.
:
: I have been writing a connect four game.
:
: So far I have defined the board using a 2D Array.
:
: Because I have no graphical programming experience, this is being
: done in...
Hi all.
I have been writing a connect four game.
So far I have defined the board using a 2D Array.
Because I have no graphical programming experience, this is being done in the console...
: They don't need to be linked. There are no libraries, and I add the
: data in manually with .word/.byte directives.
:
: I've also looked at some disassembled .elf files generated by gcc,
:...
: A java programme that determines whether a given word is a palindrome
:
Loop through the string until you reach half its length. Check wether the i-th amd (length-i)-th character are the same....
: : Please can anyone explain how an application can access a system's info eg CPU type, speed, temperature, anount of RAM etc
: : thanx
: :
:
: It`s usually best to use OS-specific functions....
: I think that the problem with this is that you're using Intel syntax (or trying to) with an assembler that uses AT&T syntax. Search the term 'AT&T assembler syntax' and you should get several...
I think that the problem with this is that you're using Intel syntax (or trying to) with an assembler that uses AT&T syntax. Search the term 'AT&T assembler syntax' and you should get several...
: This message was edited by anthrax11 at 2006-11-5 11:4:34
: : I had it done before but I was looking for 41h to be on the left so instead I tried to pass it's address to get 41h (A) on the right,...
This message was edited by anthrax11 at 2006-11-5 11:4:34
: I had it done before but I was looking for 41h to be on the left so instead I tried to pass it's address to get 41h (A) on the right,...
: The delay is for the "hold time" for the I/O device you are writing to.
: If you have any specs of the device, you would find this specified in the manual. It is indeed better to start an OS timer...
Hello,
I am trying to use and include an object file with my (gnu 'as') assembly program.
I'm fairly new to the assembly world, did some SPARC years ago in school, but I'm having problems...
: im having problems writing an 8085 assembly code program that searches for max and min values in 10 memory locations. id appreciate any help
: thanks
:
You need to represent a maze as a 2D array, where each cell is adressed by a pair of (row,column) coordinates. Each cell can be occupied by:
1. pacman (you control it with keyboard)
2. chaser(s)...