19 Temmuz 2008 Cumartesi

macroasm macroasm wants to chat

I've been using Google Talk and thought you might like to try it out.
We can use it to call each other for free over the internet. Here's an
invitation to download Google Talk. Give it a try!

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

macroasm macroasm wants to stay in better touch using some of Google's
coolest new
products.

If you already have Gmail or Google Talk, visit:
http://mail.google.com/mail/b-5bdf012b88-b18804dfe1-befb98f48c672f44
You'll need to click this link to be able to chat with macroasm macroasm.

To get Gmail - a free email account from Google with over 2,800 megabytes of
storage - and chat with macroasm macroasm, visit:
http://mail.google.com/mail/a-5bdf012b88-b18804dfe1-fc7bb9f750

Gmail offers:
- Instant messaging right inside Gmail
- Powerful spam protection
- Built-in search for finding your messages and a helpful way of organizing
emails into "conversations"
- No pop-up ads or untargeted banners - just text ads and related information
that are relevant to the content of your messages

All this, and its yours for free. But wait, there's more! By opening a Gmail
account, you also get access to Google Talk, Google's instant messaging
service:

http://www.google.com/talk/

Google Talk offers:
- Web-based chat that you can use anywhere, without a download
- A contact list that's synchronized with your Gmail account
- Free, high quality PC-to-PC voice calls when you download the Google Talk
client

Gmail and Google Talk are still in beta. We're working hard to add new features
and make improvements, so we might also ask for your comments and suggestions
periodically. We appreciate your help in making our products even better!

Thanks,
The Google Team

To learn more about Gmail and Google Talk, visit:
http://mail.google.com/mail/help/about.html
http://www.google.com/talk/about.html

(If clicking the URLs in this message does not work, copy and paste them into
the address bar of your browser).

macroasm macroasm wants to chat

I've been using Google Talk and thought you might like to try it out.
We can use it to call each other for free over the internet. Here's an
invitation to download Google Talk. Give it a try!

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

macroasm macroasm wants to stay in better touch using some of Google's
coolest new
products.

If you already have Gmail or Google Talk, visit:
http://mail.google.com/mail/b-5bdf012b88-1bd1d6393d-ca8480964729cd88
You'll need to click this link to be able to chat with macroasm macroasm.

To get Gmail - a free email account from Google with over 2,800 megabytes of
storage - and chat with macroasm macroasm, visit:
http://mail.google.com/mail/a-5bdf012b88-1bd1d6393d-af1c542366

Gmail offers:
- Instant messaging right inside Gmail
- Powerful spam protection
- Built-in search for finding your messages and a helpful way of organizing
emails into "conversations"
- No pop-up ads or untargeted banners - just text ads and related information
that are relevant to the content of your messages

All this, and its yours for free. But wait, there's more! By opening a Gmail
account, you also get access to Google Talk, Google's instant messaging
service:

http://www.google.com/talk/

Google Talk offers:
- Web-based chat that you can use anywhere, without a download
- A contact list that's synchronized with your Gmail account
- Free, high quality PC-to-PC voice calls when you download the Google Talk
client

Gmail and Google Talk are still in beta. We're working hard to add new features
and make improvements, so we might also ask for your comments and suggestions
periodically. We appreciate your help in making our products even better!

Thanks,
The Google Team

To learn more about Gmail and Google Talk, visit:
http://mail.google.com/mail/help/about.html
http://www.google.com/talk/about.html

(If clicking the URLs in this message does not work, copy and paste them into
the address bar of your browser).

9 Haziran 2008 Pazartesi

trident dsr-5301

Trident dsr-5301 uydu alıcım var ...
Menu tuşuna basıp 9999 yaptınızmı şifre bolumu acılıyo ...
mavi tuşa basarak Biss bolumune gelin ... orada 3 numara unknow yazan yer var oraya 012002 0f 100000...(sonuna kadar 0 yani) girin oluyor :)... 3 numarada unknow yazmıyosa orda unknow yazan bi yerlere girin deneyin araştırın işte :) ama şifre bu doğru yani ...

--
www.macroasm.com
www.macroasm.tr.gg
http://macroasm.googlepages.com/home

8 Haziran 2008 Pazar

cnc_robot_sahinus

SAHINUS 'un bilgisayar programı Microsoft Visual C++ 6.0 ve Microsoft Visual Basic 6.0 ile 8051 microcontroller bölümü ise 8051 Macro Assembler ile yazılmıştır...

sahinus vc++ (beta) download...

sahinus vb (beta) download...

--
www.macroasm.com
www.macroasm.tr.gg
http://macroasm.googlepages.com/home

18 Aralık 2007 Salı

asm51.exe

yeni web sitemin adresi............:
 
8051 assembler compiler asm51.exe yi buradan indirebilirsiniz...
 
iyi eğlenceler...

7 Kasım 2007 Çarşamba

INTEL HEX FILE FORMAT

INTEL HEX FILE FORMAT


(Intel Hexadesimal Dosya Formatı)

:llaaaatt[dd...]cc

Each group of letters corresponds to a different field, and each letter
represents a single hexadecimal digit. Each field is composed of at
least two hexadecimal digits-which make up a byte-as described below:

* *:* is the colon that starts every Intel HEX record.
* */ll/* is the record-length field that represents the number of
data bytes (*dd*) in the record.
* */aaaa/* is the address field that represents the starting address
for subsequent data in the record.
* */tt/* is the field that represents the HEX record type, which may
be one of the following:
*00* - data record
*01* - end-of-file record
*02* - extended segment address record
*04* - extended linear address record
* */dd/* is a data field that represents one byte of data. A record
may have multiple data bytes. The number of data bytes in the
record must match the number specified by the *ll* field.
* */cc/* is the checksum field that represents the checksum of the
record. The checksum is calculated by summing the values of all
hexadecimal digit pairs in the record modulo 256 and taking the
two's complement.


Data Records

The Intel HEX file is made up of any number of data records that are
terminated with a carriage return and a linefeed. Data records appear as
follows:

:10246200464C5549442050524F46494C4500464C33

This record is decoded as follows:

: 10 2462 00 464C5549442050524F46494C4500464C 33

| || |||| || |||||||||||||||||||||||||||||||| CC->Checksum

| || |||| || DD->Data

| || |||| TT->Record Type

| || AAAA->Address

| LL->Record Length

:->Colon

where:

* *10* is the number of data bytes in the record.
* *2462* is the address where the data are to be located in memory.
* *00* is the record type 00 (a data record).
* *464C...464C* is the data.
* *33* is the checksum of the record.

http://www.keil.com/support/docs/1584.htm sitesinden alintidir...

28 Ekim 2007 Pazar

8051 mcs...

begin:vcard
fn:http://macroasm.googlepages.com/
n:;http://macroasm.googlepages.com/
email;internet:macroasm@gmail.com
version:2.1
end:vcard

8051 ailesi, INTEL firması tarafından 1980'lerin başında piyasaya
sunulan dünyanın en
popüler 8-bit mikrokontrolör ailesidir. INTEL 'den sonra, bu MCU (Micro
Controller Unit)
ailesi ile uyumlu olarak, başta PHILIPS, SIEMENS, ATMEL, DALLAS, OKI,
HYUNDAI/HYNIX, WINBOND olmak üzere pek çok üretici firma türev işlemciler
üretmiştir. Bunlardan başka kendi özgün mikrokontrolör ailelerini üreten
ST, TEXAS INS.
gibi çeşitli büyük üreticiler bile 8051 uyumlu MCU lar geliştirmiş ve
pazara sunmuştur.
Internet de yapılan bir araştırmada 55'in üzerinde 8051 üreticisi
belirlenmiştir. Bu firmalara
ait bir liste bölüm sonunda yer almaktadır. KEIL, IAR, NOHAU, TASKING vb
başta olmak
üzere çok miktarda diğer firma ise geniş bir donanım ve yazılım
geliştirme araçları desteği
sunmuştur. Bunun sonucu olarak 8051 ailesi, 1980'lerden bugüne bir
endüstri standardı
olmuştur.
http://macroasm.googlepages.com