You probably just need this:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
    Range("A1").Value = ActiveCell.Address
Application.EnableEvents = True
End Sub